What command should I use to open a specified path at the end of program.
start "c:\Yaya\yoyo\"
Is not working
What command should I use to open a specified path at the end of program.
start "c:\Yaya\yoyo\"
Is not working
You can try like this:
%SystemRoot%\explorer.exe "c:\Yaya\yoyo\"
I think it should be this:
explorer c:/Yaya/yoyo
The start command needs blank quotes
at the beginning, as it uses the first double quoted phrase as the "Window title"
start "" "c:\Yaya\yoyo\"
Open notepad and type
START C:\Yaya\yoyo\
Save as: filename.BAT