Showing tag results for Windows PowerShell

Aug 3, 2013
Post comments count0
Post likes count0

PowerTip: Use PowerShell to Get Detailed Network Adapter Information

Doctor Scripto
Doctor Scripto

Summary: Use Windows PowerShell to get detailed network adapter information about Windows 8.  How can I use a function to get detailed network adapter information about my Windows 8 device?  Use the Get-NetAdapterHardwareInfo function and pipe the results to Format-List: Get-NetAdapterHardwareInfo | Format-List *

Scripting Guy!Windows PowerShellPowerTip
Aug 3, 2013
Post comments count0
Post likes count0

Weekend Scripter: Use PowerShell to Get Folder Sizes

Doctor Scripto
Doctor Scripto

Summary: Microsoft Scripting Guy, Ed Wilson, talks about using Windows PowerShell to get folder sizes. Microsoft Scripting Guy, Ed Wilson, is here. I was talking via Lync to my friend Rolf in Munich, Germany the other day. He said the temperatures were approaching 100 degrees Fahrenheit. We have been lucky in Charlotte, North Carolina—we have...

Scripting Guy!Windows PowerShellWeekend Scripter
Aug 2, 2013
Post comments count0
Post likes count0

PowerTip: Find the Number of Variables In-Scope

Doctor Scripto
Doctor Scripto

Summary: Find the number of variables in-scope in your function.  How can I see how many variables are available in-scope and out-of-scope in my Windows PowerShell function?  Use the Get-Variable cmdlet, the Count property, and the –Scope parameter: All variables PS C:\> function myvar {(Get-Variable...

Scripting Guy!Windows PowerShellPowerTip
Aug 2, 2013
Post comments count1
Post likes count0

More Messing Around with Wireless Settings with PowerShell

Doctor Scripto
Doctor Scripto

Summary: Microsoft Scripting Guy, Ed Wilson, talks about messing around with wireless settings with Windows PowerShell. Microsoft Scripting Guy, Ed Wilson, is here. OK, I will admit it (in case you did not know), I am a geek. I also love my job at Microsoft. I get to play around with Windows PowerShell all day. I have meetings with people who are w...

Scripting Guy!Windows PowerShellscripting techniques
Aug 1, 2013
Post comments count0
Post likes count0

PowerTip: Use PowerShell to Show Network Adapter Status

Doctor Scripto
Doctor Scripto

Summary: Use a function in Windows 8 to show network adapter status information.  How can I use Windows PowerShell in Windows 8 to find network adapter status information, such as link speed and duplexing?  Use the Get-NetAdapter function, and select the appropriate properties, for example: Get-NetAdapter | SELECT name...

Scripting Guy!Windows PowerShellPowerTip