I have made a shortcut that opens cmd at a specific directroy

How can I add a program to execute at the end of this statement?

C:\Windows\System32\cmd.exe /k cd  "C:\Program Files\App" 

I have tried:

C:\Windows\System32\cmd.exe /k cd  "C:\Program Files\App" "C:\Program Files\App\app.exe"

But it doesnt work

link|improve this question
feedback

migrated from stackoverflow.com Jun 5 '11 at 22:43

This question came from our site for professional and enthusiast programmers.

3 Answers

C:\Windows\System32\cmd.exe /k cd  "C:\Program Files\App" & app

Since you're already in the directory there's no point in repeating it, so I just shortened your path to app. Anyways, use & to run multiple commands.

link|improve this answer
damn, thanks lol, I just tried && start "xxxx", didnt work, hopefully this will :) – James Jun 5 '11 at 22:33
@James: I've also edited, you can just use & app instead of the full path if you want. – minitech Jun 5 '11 at 22:33
feedback
cmd /k "command1 && command2"

Also take a look at the Microsoft documentation for the command interpreter.

link|improve this answer
feedback

I would suggest you have cmd.exe run a script with the commands/programs you want. If it needs to be dynamic, you can make the directory name and the command to run parameters to the script.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown