Showing archive results for 2014

Jan 15, 2014
Post comments count0
Post likes count0

PowerTip: Use PowerShell to Show Connected Physical Adapters

Doctor Scripto

Summary:  Use the Get-NetAdapter function to show physical network adapters that are connected.  How can I use Windows PowerShell to see which physical network adapters on my Windows 8.1 computer           are up and connected?  Use the –physical parameter with the Get-NetAdapte...

Scripting Guy!Windows PowerShellPowerTip
Jan 15, 2014
Post comments count0
Post likes count0

Using PowerShell to Find Connected Network Adapters

Doctor Scripto

Summary: Microsoft Scripting Guy, Ed Wilson, talks about ways to use Windows PowerShell to find connected network adapters. Microsoft Scripting Guy, Ed Wilson, is here. This afternoon I am enjoying a nice pot of Oolong green tea. This tea has a great taste, especially when I add a bit of jasmine flowers. Oolong green tea steeps best if the water te...

Scripting Guy!Windows PowerShellhardware
Jan 14, 2014
Post comments count0
Post likes count0

PowerTip: Rename Network Adapter with PowerShell

Doctor Scripto

Summary:  Use Windows PowerShell to rename the net adapter.  How can I use Windows PowerShell and Windows 8 to rename my network adapter?  Use the Get-NetAdapter function to retrieve the specific network adapter and           pipe the results to the Rename-NetAdapter function: Get-Net...

Scripting Guy!Windows PowerShellPowerTip
Jan 14, 2014
Post comments count0
Post likes count0

Renaming Network Adapters by Using PowerShell

Doctor Scripto

Summary: Microsoft Scripting Guy, Ed Wilson, talks about various ways to rename network adapters by using Windows PowerShell. Microsoft Scripting Guy, Ed Wilson, is here. I am sitting here sipping a cup of tea made from English Breakfast, peppermint and spearmint leaves, strawberry leaves, licorice root, and a cinnamon stick. It is delightfully ref...

Scripting Guy!Windows PowerShellhardware
Jan 13, 2014
Post comments count0
Post likes count0

PowerTip: Use PowerShell to Enable All Network Adapters

Doctor Scripto

Summary: Use Windows PowerShell to enable all network adapters.  How can I use Window PowerShell to quickly enable all network adapters on my Windows 8.1 laptop?  Use the Get-NetAdapter and the Enable-NetAdapter commands: Get-NetAdapter | ? status -ne up | Enable-NetAdapter

Scripting Guy!Windows PowerShellPowerTip