About 1,650,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. 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, …

  3. Error handling in Batch script when a batch script failed

    Jan 18, 2021 · You can add a EOF label at the end of the script and when the script works goto EOF echo Sync Starts cd C:\Users\Common\Files call get_files.bat if errorlevel 1 goto ERROR …

  4. What commands are available in a batch file? - Computer Hope

    Mar 21, 2025 · List of commands and options available in a batch file and explanation with each of the commands. Covers available commands, usage examples, and best practices.

  5. How to Use Choice and Set in a Batch File - Computer Hope

    Sep 3, 2019 · Learn to effectively use the choice and set commands in batch files for creating user-selectable options, enhancing user interactivity and command automation.

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

    Jul 16, 2020 · The tilde (~) sign is used in different ways in batch files: Argument quote removal. A tilde sign before an command-line argument (such as "%~1") indicates to remove the …

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

  8. What do you call the language you use in CMD nowadays?

    Mar 16, 2023 · In the older (MS-DOS) documentation, the language is referred to as Batch Commands. I don't think the difference in names is intentional though. In my experience those …

  9. In Batch Script, Extract String from a XML - Super User

    Jun 24, 2020 · 3 I'm new to batch scripting. I'm trying to extract the status from a XML output. Basically I need appPoolState from below, if it's "Started".

  10. Passing command-line arguments to a windows batch script

    Sep 15, 2014 · I need to create a windows batch script where I need to pass a few command-line arguments. These arguments may appear in in any order, but the script should pick them up …