About 78 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 · Note that this answer is tailored toward cmd batch language, the one found in Windows. You mention "DOS batch" but, based on several points, I think the former choice is a safe bet (1). If …

  4. How do I execute cmd commands through a batch file?

    So, make an actual batch file: open up notepad, type the commands you want to run, and save as a .bat file. Then double click the .bat file to run it. Try something like this for a start:

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

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

    There is one more diff between /k and /c. If you're using /c the new terminal window name is the same as the standard one, smth like "c:\Windows\system32\cmd.exe". but in case of /k it corresponds to …

  8. Creating a BAT file for python script - Stack Overflow

    Jan 1, 2011 · How can I create a simple BAT file that will run my python script located at C:\\somescript.py?

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

  10. How to stop process from .BAT file? - Stack Overflow

    May 22, 2010 · So I have process I started from one bat file. How to stop it from another?