HOW TO BLOCK SOMEONE’S INTERNET CONNECTION USING NOTEPAD

In this trick I am going to show you how you can block someone’s Internet connection using notepad. We will be creating a batch file using notepad which will execute our command that stops internet connection. Creating of batch file is simple and take less than two minutes. The tutorial also includes how you can Start the internet connection after blocking, so that you don’t have any problems.

TUTORIAL TO BLOCK SOMEONE’S INTERNET

Open Notepad. Right Click > New > Text Document Type the command below: @Echo off Ipconfig/release

Save the file as ‘anything.bat’. For Eg: block-internet.bat

Now whenever you open this file, the internet connection of the computer will be lost.

RESTORING INTERNET CONNECTION

Open notepad

Type the command:@Echo off Ipconfig/renew

Save this file as ‘anything.bat’. For Eg: start-internet.bat

Now whenever you open this file, the internet connection of pc will start again. Because this command will renew the IP Address of the computer.

Leave a comment