About 80 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. 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 …

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

    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.

  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. How do I execute cmd commands through a batch file?

    I was trying to run a couple of batch files parallely at startup, if a condition was true. For this I made a parent batch file which should have checked for the condition and invoke the other child batch files if …

  8. Como puedo añadir texto a un .bat - Stack Overflow en español

    Sep 12, 2021 · quiero crear un archivo .bat en donde pueda crear un archivo de texto y definir su contenido desde el .bat y que no me lo solicite en CMD, es decir, al crear el .bat y ejecutarlo quiero …

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

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