About 249,000 results
Open links in new tab
  1. How do I make a batch file wait / sleep for some seconds?

    May 3, 2017 · 89 I use a batch file to start up a few of the programs I need running in the background. Up until now, I had used the pause command to execute it after some of the other …

  2. batch file - How to make a bat open a cmd window and run …

    The /k switch k arries out but remains, and lets you input commands (after executing the commands inside the batch file, ie the script, or directly given parameters after the commands …

  3. How can I convert a Windows batch script to a .exe?

    Jan 23, 2015 · This is a simple way to convert a bat or cmd file to an exe. I was having problems running batch files so I decided to rename the file .cmd and see if it would execute.

  4. How to run multiple batch files with one master batch file

    What I wanted to do in a "master" batch file was access subfolders and run batchfiles in those folders sequentially. This is what I ultimately ended up doing, cd Folder1 call batch_cmd.bat cd …

  5. Make bat file with several commands that take time for each

    Jul 6, 2024 · I would like to make a bat file but with several commands that each take some time. I Haven't written a bat file in about 20 years I would appreciate some examples. I want run: 1 …

  6. How to run batch file command with elevated permissions?

    Aug 13, 2016 · Split the commands that need elevation off into a separate batch file, e.g. elevated.bat. Then, when it's time to run them, use this from your non-elevated script: …

  7. How do I make my Batch Code a command I can access anywhere?

    Sep 2, 2018 · 1 Executable files like findstr.exe are placed in the \system32 folder and can be accessed anywhere from the command prompt. However doing this with one of my batch files …

  8. How to sign a Windows batch (.bat) file? - Super User

    Another alternative is to use a separate batch file on the local drive to launch the one on the network. The launching batch file need only have one line in it: @call …

  9. How do I create a Windows Batch file that does not show the …

    44 You can't -- executing a batch file with the built in Command Prompt is going to keep a window open until the batch file exits. What you can do is take steps to make sure that the batch file …

  10. Run a .bat file silently? - Super User

    Sep 15, 2020 · I have a .bat file I am using to control the volume of my monitor using DDC/CI. I was using nircmd to run it silently, but as of the newest version of Windows 10, that no longer …