About 208,000 results
Open links in new tab
  1. Is it possible to automatically run a batch file as administrator

    Jul 28, 2014 · I am wondering whether it is possible to automatically open a batch file as admin when you double-click on the batch file, because the commands need to be run with administrative rights. …

  2. 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 start-ups finished. …

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

    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 exits as …

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

    I tried using start but that doesn't work either, it just bring up a command prompt withing the folder. I know this sounds a little confusing but all I want to do is use one single .bat file to run multiple .bat …

  5. windows - Log an entire batch file output - Super User

    Jul 29, 2021 · I'm using a command line script to adjust multiple settings on a computer. However, I would like to have the entire output to also be logged into a .txt or .log file. When I use my basic …

  6. How to prevent the command prompt from closing after execution?

    9 Just open a command prompt at the location of your batch file, and manually key in the name of your batch file to run it within that window. 1.Navigate to the folder where your executable resides 2.Shift …

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

  8. how can I make my .bat file continue after an error - Super User

    49 I have a .bat file in windows that does three things cmd1 arg1 arg2 cmd2 arg3 cmd3 arg4 arg5 arg6 Sometimes cmd1 can fail and that's fine, I would like to carry on and execute cmd2 and cmd3. But …

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

    Sep 15, 2020 · 0 What you can do is run your batch file minimized, which gives virtually the same effect: Create a shortcut to the batch file. Right-click the shortcut and choose Properties. In the Properties …

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

    Jan 23, 2015 · So, merely double clicking a batch file will execute the batch file, or even just opening a terminal in the folder and typing in the batch file 'file name' will do the same thing. I convert batch …