About 1,770,000 results
Open links in new tab
  1. Batch File Help - Computer Hope

    Jun 1, 2025 · Batch files help with full list of questions and answers and FAQs that help answer how to make, run, and edit batch files in DOS and Windows command line.

  2. Call Command - Computer Hope

    Mar 21, 2025 · Call command information for MS-DOS and the Windows command line. Page includes call command availability, syntax, and examples on how to use the call command.

  3. How does && work within a batch/cmd script? - Super User

    Dec 21, 2021 · How does && work in a Batch File? && will execute the next command when the previous command returns 0 || will execute the next command when the previous command …

  4. What does the percent sign (% and %%) in a batch file argument …

    1 It's a variable. That particular example uses the directory option of a FOR loop, iterating through the directories and assigning them to %%A. That's also not a command-line example, but a …

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

    Now change the "Default key value" to cmd.exe /k "%1" %*. Now, every batch script window will stay open after its execution. Note that this is like using cmd.exe /c cmd.exe /k program.bat, …

  6. What is the meaning of tilde ~ in batch variables? - Super User

    Jul 16, 2020 · In this context, it is used to perform substring modification of a variable using an offset from the first character in the variables content, as explained in the help output of Set /?.

  7. How do I make a batch file wait / sleep for some seconds?

    May 3, 2017 · 91 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 …

  8. windows - How can I delete all files/subfolders in a given folder via ...

    Apr 27, 2015 · I would like to delete all files and subfolders using a batch file in Windows 7 and keep the top folder. Basically emptying the folder.

  9. How to get the directory path where a Batch file is called from?

    May 31, 2021 · Batch scripts have a few variables they can use to get special information about the script. %1 to %9 are the parameters that were used after calling the batch script, but %0 is …

  10. What is the "language" of a .bat batch file on Windows?

    Mar 25, 2016 · Batch files came about before Windows in the DOS era, so the term Windows script is inaccurate. Also, there are a lot of Windows scripting languages: PowerShell's, …