About 860,000 results
Open links in new tab
  1. cmd - Why does "cd" on Windows Command Line not change …

    In a batch file the batch will wait for the program to exit. When typed the command prompt does not wait for graphical programs to exit. If the program is a batch file control is transferred and …

  2. How do I execute cmd commands through a batch file?

    16 start cmd /k "your cmd command1" start cmd /k "your cmd command2" It works in Windows server2012 while I use these command in one batch file.

  3. cmd - How to run multiple .BAT files within a .BAT file - Stack …

    Jul 9, 2009 · 1477 Use: call msbuild.bat call unit-tests.bat call deploy.bat When not using CALL, the current batch file stops and the called batch file starts executing. It's a peculiar behavior …

  4. Run a batch file with Windows task scheduler - Stack Overflow

    227 I have a batch file daily.bat, this is the code: cd C:\inetpub\wwwroot\infoweb\factuur\cron c:\PHP\php.exe -f ./cron_pdf.php ftp -s:ftp_upload.txt ftp.site.be And I created a task with task …

  5. How to code a BAT file to always run as admin mode?

    Mar 23, 2017 · This does not work for me on either Windows 10 or Windows 7. When I try to run as Administrator, either by right clicking the BAT file and "Run as Administrator", or using the …

  6. Bat file to run a .exe at the command prompt - Stack Overflow

    Mar 8, 2013 · Put this command in a text file, save it with the .bat (or .cmd) extension and double click on it... Presuming the command executes on your system, I think that's it.

  7. Executing a command line command from a simple batch file?

    Further Reading An A-Z Index of the Windows CMD command line - An excellent reference for all things Windows cmd line related. start - Start a program, command or batch script (opens in a …

  8. How do I run a batch script from within a batch script?

    Jan 25, 2011 · How do I call another batch script from within a batch script? I want it to execute in an if statement.

  9. Keep CMD open after BAT file executes - Stack Overflow

    Jul 31, 2013 · 256 Depending on how you are running the command, you can put /k after cmd to keep the window open. cmd /k my_script.bat Simply adding cmd /k to the end of your batch file …

  10. How to run a batch file without launching a "command window"?

    On Windows XP, can I run a batch (.bat or .cmd) file, via a shortcut, without a "black window"?