I am trying to write a batch script that starts a google search for e.g "Sun Moon Lake" in double quotes. However, the double quotes are not appearing.
My script is as follows :
@echo off
start https://www.google.com/search?q="Sun+moon+lake"
Thanks!