Can I toggle the NetLimiter driver through the command line?

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?

geeks

Posted 2012-06-02T13:53:06.123

Reputation: 26

Answers

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

Posted 2012-06-02T13:53:06.123

Reputation: 103 763