Automate daily tasks on Windows with simple batch scripts! Batch files are lightweight scripts that help you perform repetitive tasks automatically just double-click and let Windows do the work!
git clone https://github.com/aonexyz/Useful-Batch-Files
cd Useful-Batch-Files- Open Notepad
- Paste any script from this repo
- Save the file with .bat extension
- Double-click to run!
Boost performance by deleting temp files.
@echo off
del /q/f/s %TEMP%\*
rd /s /q %TEMP%
echo Temporary files deleted!
pauseSave as: CleanTemp.bat
Get stored WiFi passwords.
@echo off
netsh wlan show profile name="WiFi-Name" key=clear
pauseSave as: WifiPassword.bat
Backup important files instantly.
@echo off
xcopy "C:\Important" "D:\Backup" /s /i /y
echo Backup completed!
pauseSave as: BackupFiles.bat
Display full network information.
@echo off
ipconfig /all
pauseSave as: NetworkInfo.bat
@echo off
title Folder Locker
if EXIST Private goto UNLOCK
if NOT EXIST Private goto MDLOCKER
:CONFIRM
echo Are you sure to lock this folder? (Y/N)
set/p "cho=>"
if %cho%==Y goto LOCK
if %cho%==N goto END
:LOCK
ren Private "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
attrib +h +s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
echo Folder locked!
goto End
:UNLOCK
echo Enter password to unlock:
set/p "pass=>"
if NOT %pass%==1234 goto FAIL
attrib -h -s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
ren "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" Private
echo Folder unlocked!
goto End
:FAIL
echo Wrong password!
goto End
:MDLOCKER
md Private
echo Private folder created!
goto End
:End
pauseChange password 1234 to your own.
Save as: FolderLocker.bat
Shutdown PC after a set time.
@echo off
shutdown -s -t 36003600 = 1 hour in seconds
Save as: ShutdownTimer.bat
@echo off
ipconfig /release
ipconfig /renew
pauseSave as: RestartInternet.bat
@echo off
start chrome.exe
start notepad.exe
start calc.exeReplace apps as you like. Save as: OpenApps.bat
@echo off
ping google.com
pauseSave as: InternetCheck.bat
@echo off
set folder=%date:~10,4%-%date:~4,2%-%date:~7,2%
md %folder%
echo Folder %folder% created!
pauseSave as: AutoFolder.bat
Automate daily work Save time Learn scripting Boost productivity
Feel free to fork this repo, add your own scripts, and submit PRs!
Free to use and modify- credit appreciated😊
- A 1 – GitHub: aonexyz
Love the script? Wanna fuel more WAGMI vibes? Drop some crypto love to keep the charts lit! 🙌
- SUI:
0x6e20d8f6c15aeb42887608eec65b29385f21fa21cfd23302c54fabd813d8cd38 - USDT (TRC20):
TMoPwVpeC8A2yTc5qotKj8gVXaGTqQwc3L - BNB (BEP20):
0x068ff5934e0c30d8763012a6faa0033e7fdcc455 - Binance UID:
899350787
Every bit helps me grind harder and keep this bot stacking bags! 😎