1

I've installed NetLimiter 3 and I was wondering how I can enable/disable its driver using the command line. I need to be able to programmatically toggle the driver.

Enabling it through the GUI is simple:

  1. Open the Network and Sharing Center and clicking the interface (LAN for me)

    Screenshot

  2. Click Properties

    Screenshot

  3. Uncheck NetLimiter Ndis Driver and click OK.

    Screenshot

Can I do this through the command line?

Bob
  • 60,938
  • 25
  • 191
  • 216
geeks
  • 26
  • 3

1 Answers1

0

Assuming this is Windows, you can try to use the Netsh command.

Something like:

netsh interface set interface name="Netlimiter Ndis Driver" admin=disabled

to disable and

netsh interface set interface name="Netlimiter Ndis Driver" admin=enabled

to turn it back on.

Ƭᴇcʜιᴇ007
  • 111,883
  • 19
  • 201
  • 268