Konan
|
Wednesday, April 13, 2011
So I wanna make a bat file, that opens a exe file, inside subfolder..
but not like this:
START C:\Program Files\Demo\files\start.exe
something like this: \files\start.exe
Than I can use it on any computer, anywhere, any folder..
But I don't know how to make START command with subfolder..without C:\
|
Grega
Perpetual Traveler
|
Wednesday, April 13, 2011
Konan wrote : So I wanna make a bat file, that opens a exe file, inside subfolder..
but not like this:
START C:\Program Files\Demo\files\start.exe
something like this: \files\start.exe
Than I can use it on any computer, anywhere, any folder..
But I don't know how to make START command with subfolder..without C:\
You don't really need the start command to begin with.
But usually doing ./filepath/file.exe should work.
|