About 20,600,000 results
Open links in new tab
  1. Using parameters in batch files at Windows command line

    In Windows, how do you access arguments passed when a batch file is run? For example, let's say I have a program named hello.bat. When I enter hello -a at a Windows command line, how …

  2. Windows batch files: .bat vs .cmd? - Stack Overflow

    Sep 29, 2008 · If both .bat and .cmd versions of a script (test.bat, test.cmd) are in the same folder and you run the script without the extension (test), by default the .bat version of the script will …

  3. How to use if - else structure in a batch file? - Stack Overflow

    Jun 18, 2012 · I have a question about if - else structure in a batch file. Each command runs individually, but I couldn't use "if - else" blocks safely so these parts of my …

  4. Logical operators ("and", "or") in Windows batch - Stack Overflow

    Jan 26, 2010 · How would you implement logical operators in Windows batch files?

  5. BAT file to map to network drive without running as admin

    May 8, 2014 · I'm trying to create a .bat file that will map to a network drive when it is clicked (it would be even better if it could connect automatically on login if connected to the network, …

  6. Open a folder with File explorer using .bat - Stack Overflow

    Open a folder with File explorer using .bat Asked 11 years, 8 months ago Modified 3 years, 6 months ago Viewed 187k times

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

    Jul 31, 2013 · I have a bat file like this: ipconfig That will print out the IP info to the screen, but before the user can read that info CMD closes itself. I believe that CMD assumes the script …

  8. windows - How can I debug a .BAT script? - Stack Overflow

    Oct 3, 2008 · Is there a way to step through a .bat script? The thing is, I have a build script , which calls a lot of other scripts, and I would like to see what is the order in which they are called, so …

  9. Batch File; List files in directory, only filenames?

    This is probably a very simple question, but I'm having trouble with it. I am trying to write a Batch File and I need it to list all the files in a certain directory. The dir command will do this, ...

  10. Batch file to perform start, run, %TEMP% and delete all

    May 23, 2012 · del won't trigger any dialogs or message boxes. You have a few problems, though: start will just open Explorer which would be useless. You need cd to change the …