I am trying to open a file from a batch file but i am having some trouble.
I can open a file if the file path name doesn't have any spaces in it but it does. So what i tried was putting quotes around the path but then that just opened another comand prompt.
Example:
I tried:
start C:\Program Files\Microsoft Office\OFFICE11\WINWORD.exe
didn't work because of the spaces
start "C:\Program Files\Microsoft Office\OFFICE11\WINWORD.exe"
opened another comand prompt
Any ideas on what to do.