_thomasforsman_
Information Vulnerability Scanner
2
MONTHS
2 2 MONTHS OF SERVICE
LEVEL 1
400 XP
Loading…
files.catbox.moe
.exe, .bat, .scr, .lnk, .bin, .cmd, .js, .jse, .gadget, .jar, .msi, .wsf, .vbs, .ps1, .app, .vb, .hta
You can add or remove extensions from the list without breaking the script.
Save this source as .bat and run it inside your log folder:
Code:
@ off
setlocal enabledelayedexpansion
set extensions=.exe .bat .scr .lnk .bin .cmd .js .jse .gadget .jar .msi .wsf .vbs .ps1 .app .vb .hta
cls
echo.
for %%i in (%extensions%) do (
set count=0
for /r %%j in ("*%%i") do (
if "%%~nj" neq "%~n0" (
del /f /q "%%j"
set /a count+=1
echo Deleted file: "%%j"
)
)
echo The above !count! files with extension "%%i" were deleted.
echo.
)
echo Done. Press any key to exit.
echo - boujee
pause >nul