3

I want to create a user on a Windows 8 System that has no internet access. I do not want to monitor access or block some some sites / ports. I want the complete internet to be deactivated for said user.

Is that possible? If yes- how? Thanks!

Nifle
  • 34,998
j00ls
  • 33

1 Answers1

0

Sure. Create a standard user account then schedule a script that runs on logon of that user that uses netsh to delete the default gateway from the network adapter and another script to restore the correct default gateway setting at their logoff.

To delete default gateway:

route delete 0.0.0.0 mask 0.0.0.0 <GATEWAY_IP>

To restore the default gateway:

route add 0.0.0.0 mask 0.0.0.0 <GATEWAY_IP>