Senior pranks

There's no such fun over here. The IT team at my school are like a freaking SWAT team. Do anything fun-related over the network and within seconds your account is banned and you're surrounded by angry computer people.

On an unrelated note, I once got my IT teacher to go on goatse on his laptop. Luckily he saw the funny side.
 
I was a teachers aid for this computer class. So I made a comp program that ran as a windows app so it would hide in the background. I named it svchost.exe since theres already about 5 of them running and I put it in the startup folder. Whenever someone would turn their comp on the CPU bell would ring constantly and that was right when we were on the chapter of learning what different signals mean from the CPU bell so our teacher who knew next to nothing about the class started to freak out when this happened.

After about a week the kids learned what I did to a few of their computers and they copied and spread it to the rest of them. Its no wonder that teacher hates me now after I told her it was me and how to fix it.
 
Hmmm. I'll do it after my IPT exams are over. Don't want the teacher to suddenly hate me forever...
 
I was a teachers aid for this computer class. So I made a comp program that ran as a windows app so it would hide in the background. I named it svchost.exe since theres already about 5 of them running and I put it in the startup folder. Whenever someone would turn their comp on the CPU bell would ring constantly and that was right when we were on the chapter of learning what different signals mean from the CPU bell so our teacher who knew next to nothing about the class started to freak out when this happened.

After about a week the kids learned what I did to a few of their computers and they copied and spread it to the rest of them. Its no wonder that teacher hates me now after I told her it was me and how to fix it.

rofl, that sounds like a lot of fun. How can I make this sort of program?
 
Open cmd.exe from run. type in netsend * hello.

Alternatively, copy this into notepad

@echo off
set /p msgto=Send msg to?:
set /p msg=Message:
net send %msgto% "%msg%"

save it as anything.bat double click it, put the name of the station you want to send too, or * for all,then message and away you go.

I'm gonna sue you! Because of you, I just got in big trouble on school. The message I sent wasn't really appropriate.

*shakes fist*
 
rofl, that sounds like a lot of fun. How can I make this sort of program?

I made it with C/C++. It is a pretty easy program when you find the library that contains the function to make it beep. I think its a standard library too. I haven't programmed for a while so I wouldn't be able to create it from memory. It was a pretty short program though and wouldn't be hard to make if you know C/C++ already.
 
Edit - Hmm I just tried this on our LAN here, but it doesn't do anything. What do other computers see when you send it?
Edit2- I just tried the something.bat, but it closes after I enter the message.

You need the messanger service turned on on the machine you're sending from and two.

At our workplace, we tend to keep it turned off.

-Angry Lawyer
 
Yeah I figured... It works at our school. The network administrator didn't like the results. Shit.
 
avatar7020_45.gif


-Angry Lawyer
 
Damn it's friday 13th!! Now I know why I wasn't thinking when I sent "screw you ****ing gays/lesbians" (translated from dutch) to every pc at school. It was just bad luck!
 
I know how to write a program to make the computer beep all the time, if only I knew how to make it run in the background.
 
I know how to write a program to make the computer beep all the time, if only I knew how to make it run in the background.

You make it run as a windows app vs an executable file.

There should be an option of what type of project you want to creat. Choose windows app.
 
Back
Top