Thursday 21 December 2017

How to block someone’s Internet Connection using Notepad

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:

Blocking Internet Connection:

  1. Open Notepad.
    Right Click > New > Text Document
  2. Type the command below:
    @Echo off
    Ipconfig/release
  3. 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.
  4. What this Command Exactly does?
  5. When we run this command, the IP Address of the computer lost and therefore the internet connection is stopped.

    Starting Internet Connection:

    1. Open Notepad.
    2. Type the command below:
      @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.

Video Tutorials



Need any help? Just comment below..

No comments:

Post a Comment