Tool to easily block Internet access completely for Windows?

2

I would like to block Internet access for my own machine. This is so that no apps can talk to the outside in the time frame I want it to. I know a firewall can do this but I don't want to install one. I don't want to use the included one. I know also I can change the gateway but that involves several clicks. I am looking for a system tray software or simple desktop app to toggle the access. On/Off with a single click.

Tony_Henrich

Posted 2010-12-15T08:54:59.200

Reputation: 9 154

2Do you still need local network connectivity, or would it work to disable your network access completely? – nhinkle – 2010-12-15T08:57:48.460

I don't need local connectivity. – Tony_Henrich – 2010-12-15T17:36:40.423

Answers

5

You don't specify whether you need local connectivity as well. If you don't, the so-simple-someone-could-easily-overlook-it, 100% foolproof solution is to just unplug the network cable.

Shinrai

Posted 2010-12-15T08:54:59.200

Reputation: 18 051

If it's a laptop or netbook, those tend to have a button to turn off disable wifi connection – Corey – 2010-12-15T16:40:04.170

I am not using wifi. Unplugging works but I don't want to do that. I should have added this to the options I don't want to use. – Tony_Henrich – 2010-12-15T17:37:33.463

1@Tony - So basically, you don't want to do anything easy? Have it your way, I guess. Maybe you'll luck out and somebody will find an app that does nothing but enable and disable the network adapter for you with a single click, but I've never seen such a thing. – Shinrai – 2010-12-15T20:12:45.560

1

In Windows 7 it's just

ipconfig /release

and

ipconfig /renew

Harry

Posted 2010-12-15T08:54:59.200

Reputation: 11

0

Create two batch files, one to release your IP address and one to renew your IP address. Then create a shortcut to each of them in your Quick Launch toolbar.

To disconnect:

ipconfig /release

To connect:

ipconfig /renew

Thariama

Posted 2010-12-15T08:54:59.200

Reputation: 762