A BAT file is a type of script file used to execute commands in the Windows command line. It contains a series of line commands which are executed automatically when the file is run, and can be used to automate various tasks or run certain programs.You can download various sample bat file from the list below.
There are multiple options available for you. Just go through and download according to your needs.

BAT File Example:
@echo off
:: File to Download BAT Files Sample
:: Change the directory to the folder you want to save the files
cd C:\Documents\SampleBATFiles
:: Download the files
wget -O Sample1.bat https://www.example.com/sample1.bat
wget -O Sample2.bat https://www.example.com/sample2.bat
wget -O Sample3.bat https://www.example.com/sample3.bat
:: Notify the user when the download is completed
echo Download Complete!
pause