January 13th, 2014

PowerTip: Use PowerShell to Enable All Network Adapters

Doctor Scripto
Scripter

Summary: Use Windows PowerShell to enable all network adapters.

Hey, Scripting Guy! Question How can I use Window PowerShell to quickly enable all network adapters on my Windows 8.1 laptop?

Hey, Scripting Guy! Answer Use the Get-NetAdapter and the Enable-NetAdapter commands:

Get-NetAdapter | ? status -ne up | Enable-NetAdapter

Author

The "Scripting Guys" is a historical title passed from scripter to scripter. The current revision has morphed into our good friend Doctor Scripto who has been with us since the very beginning.

0 comments

Discussion are closed.