Batch Files

Open discussion forum. For topics that do not fit anywhere else.
Post Reply
westrupp
Adept Poster
Posts: 89
Joined: Wed Aug 01, 2007 3:07 am

Batch Files

Post by westrupp »

Batch file to fill hard disk with junk....

Nice if you need delete anything and have sure another "people" try recover you files....you delete, fill, delete and fill again many times and I think this turn more hard task of recover....

sorry my **** english....

Code: Select all

@echo off
 
set x=0
set y=0
cd\
md fooler%y%
 
:INICIO
set /a x=%x%+1
echo %x%
copy c:\biblia.exe c:\fooler%y%\biblia%x%.exe /b /y > NUL
if "%x%" == "2500" goto novapasta
goto inicio
 
:NOVAPASTA
set /a y=%y%+1
set x=1
cd\
echo - 
echo - CRIANDO PASTA DE NUMERO %y%
echo - 
md fooler%y%
goto inicio
cya,
User avatar
CWO
POL Expert
Posts: 1160
Joined: Sat Feb 04, 2006 5:49 pm

Re: Batch Files

Post by CWO »

Many programs offer a way to format by writing junk automatically. I believe the Western Digital one has a "Write Zeros" option for formatting.
Post Reply