Resetting wireless adapter in Windows 10 with regular user privileges from command line

If you need to correct a Wired or Wireless network problem on a computer, you need to run TCP/IP Reset.

You need to have Administrative Credentials to do this.

Open cmd.exe with Run as Administrator

(1) netsh int IP reset c:\resetlog.txt

(2) ipconfig /flushdns

(3) Restart the computer.

So can this process be run from a [user] command line? No, you cannot do this.

If you just need to restart the adapter (normally does not fix underlying issues), you might be able to use a Power Shell Script to do it, but even it appears to need Admin credentials. This means all command line methods I have reviewed require Admin credentials.

Most of the parameters below are optional so you can likely find a simple form of the cmdlet that you can use.

https://docs.microsoft.com/en-us/powershell/module/netadapter/restart-netadapter?view=win10-ps

Restart-NetAdapter

   [-Name] <String[]>
   [-IncludeHidden]
   [-PassThru]
   [-CimSession <CimSession[]>]
   [-ThrottleLimit <Int32>]
   [-AsJob]
   [-WhatIf]
   [-Confirm]
   [<CommonParameters>]