About 768,000 results
Open links in new tab
  1. How to use the start command in a batch file? - Stack Overflow

    Jun 20, 2013 · The problem is that when I run the batch file, the DOS window stays up until the command completes and I would like it to go away. So I tried using the start command, but placing it …

  2. Why does "cd" on Windows Command Line not change drives?

    4. Change directory and CALL batch file with one command line This command line changes the directory and on success calls the batch file. cd /D "F:\- Big Packets -\kitterengine\Common" && call …

  3. Start.bat code | SpigotMC - High Performance Minecraft Software

    Sep 9, 2015 · You can use this in your start.bat. To change the amount of ram the server is using just change the 1. (Currently this would use 1 GB of Ram)

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

    Mar 23, 2017 · It creates a VBScript file with code that elevates you to admin (if you're not already), and runs the bat file again, this time as admin.

  5. How can I run a program from a batch file without leaving the console ...

    May 4, 2018 · For the moment my batch file look like this: myprogram.exe param1 The program starts but the DOS Window remains open. How can I close it?

  6. cmd - Batch How to start a program - Stack Overflow

    Nov 25, 2016 · I want to create a batch file to launch my executable file after it has made some changes to itself. My batch file is: START /D "C:\Users\me\AppData\Roaming\Test\Test.exe" When I run it …

  7. 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.

  8. BAT file: Open new cmd window and execute a command in there

    Jun 3, 2020 · 3 If I understand you correctly doing this in side your bat file will open Command prompt and print your message to screen. cmd.exe hello world hope this helps.

  9. How to create batch file in Windows using "start" with a path and ...

    Sep 16, 2008 · I need to create a batch file which starts multiple console applications in a Windows .cmd file. This can be done using the start command. However, the command has a path in it. I also need …

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

    0 Action: Start a Program Program/script: C:\Windows\System32\cmd.exe Add arguments: /k start "" "E:\scripts\example.bat" Add exit to the end of your batch file. The cmd window will not show if you …