PowerTip: Use PowerShell to Enable All Network Adapters

Doctor Scripto

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

0 comments

Discussion is closed.

Feedback usabilla icon