Windows Batch Automation Lab
Visual Automation Builder
Interactive node pipeline representing pure Windows batch execution flow.
Double-Click Launcher
Launches script.bat
Open Google Search
start https://google.com
Safe Delay
Wait 2 seconds
Open YouTube
start https://youtube.com
Open Gmail
start https://mail.google.com
Complete & Exit
All tabs launched
Developer Playground
Click "Run Recipe" or "Run Script" to simulate Windows CMD execution.
.bat file on your πͺ Windows 11 PC!Batch Commands Quick Reference Cheat Sheet
Essential syntax and commands used in Windows .bat scripting.
@echo offHides command echoing so only script outputs are printed to the console.
set /p var="prompt"Prompts the user for interactive input and stores the result in a variable.
set /a var=mathEvaluates mathematical and arithmetic expressions (addition, multiplication).
if exist file ( )Checks if a specified file or directory path exists before executing logic.
for %%i in (*) do ( )Iterates through files, directories, or numbers in a batch loop.
for /r %%i in (*) do ( )Recursively loops through all subdirectories starting from the specified path.
call :label argsExecutes an internal subroutine/function label and returns to the caller.
goto :labelJumps script execution directly to a specified :label destination.
choice /c YNDisplays a single-character interactive prompt with constrained key options.
timeout /t 5 >nulPauses script execution for a specified number of seconds without printing prompt.
%~dp0Built-in variable returning the full absolute path of the directory containing the script.
echo msg > file.txtRedirects text output to a file, overwriting existing content.
echo msg >> file.txtAppends text output to the end of an existing file without overwriting.
taskkill /f /im app.exeForces the termination of a running process by its executable name.
start "" "url"Launches an application, website, or document in its default associated program.
Recommended Projects & Tracks
Step-by-step tutorial with multi-browser incognito support & Windows Task Scheduler.
Windows CLI Terminal CourseMaster CMD commands, directory navigation, drive letters, and permissions.
Git Version Control CourseLearn git commit, push, pull, branching, and GitHub workflows.