CMD Question

January 13th, 2017

Hi everyone, I want to make a batch file that is a shortcut to running cmd to a specified file destination. I want the batch file to pull up command prompt at this location:
C:\Users\Wildcat\Programming\Google\SDK\tools
Thanks for any help!

Answer #1
try
cd "C:\Users\Wildcat\Programming\Google\SDK\tools"
cmd

Answer #2
thank you! my issue was that the prompt kept closing but the “cmd” command was the solution. thanks!
Answer #3
You can even make a shortcut with this
cmd /k cd c:\users\wildcat\programming\google\sdk\tools

 

| Sitemap |