I\'m terribly new to scripting on windows. Using windows 7 64.
I\'m trying to make a .bat file that I can double click, and have it open a command prompt and automatical
This could be done like that:
@ECHO OFF cd /D "C:\my\destination" cmd.exe
If you need to execute a file or command after you open the cmd you can just replace the last line with:
cmd.exe /k myCommand