About 79 results
Open links in new tab
  1. 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 run, even …

  2. 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 do I let my

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

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

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

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

    Oct 21, 2008 · A bat file has no structure...it is how you would type it on the command line. So just open your favourite editor..copy the line of code you want to run..and save the file as whatever.bat or …

  6. How to call a Windows batch file from another one or from prompt?

    Mar 27, 2026 · The batch file will be executed by the current cmd.exe instance (or a new cmd.exe instance if, for instance, double-clicked in Explorer). Same as #1, only has an effect when used …

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

  8. How can a .bat file be 'converted' to .exe without third party tools?

    Jan 27, 2015 · There are many reasons to want to 'convert' a .bat to .exe - to hide/obfuscate implementation, passwords, path to resources , to create a service from batch file ... and mainly to …

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

    Mar 23, 2017 · The answers provided by both Kerrek SB and Ed Greaves will execute the target file under the admin user but, if the file is a Command script (.bat file) or VB script (.vbs file) which …

  10. How to run multiple .BAT files within a .BAT file - Stack Overflow

    Jul 9, 2009 · 20 To call a .bat file within a .bat file, use call foo.bat (Yes, this is silly, it would make more sense if you could call it with foo.bat, like you could from the command prompt, but the correct way is …