Showing results for Boe Prox - Scripting Blog [archived]

Nov 7, 2014
Post comments count0
Post likes count0

What It Means to Be a PowerShell MVP

ScriptingGuy1
ScriptingGuy1

Summary: Four Windows PowerShell MVPs share what the title means to them. Microsoft Scripting Guy, Ed Wilson, is here. The MVP Summit is over. Many MVPs began their long trek home last night. Others decided to remain overnight or even over the weekend before heading home. From the feedback I have received, one thing is for sure, this year's MVP Sum...

Scripting Guy!Windows PowerShellguest blogger
Oct 5, 2014
Post comments count0
Post likes count0

PowerTip: View All Values of an Enum

Doctor Scripto
Doctor Scripto

Summary: Boe Prox shows how to view all values of an enum. How can I view all of the available values of an enum? Use the [Enum]::GetNames() method, for example:PS C: > [Enum]::GetNames([System.ConsoleColor])BlackDarkBlueDarkGreenDarkCyanDarkRedDarkMagentaDarkYellowGrayDarkGrayBlueGreenCyanRedMagentaYellowWhite

Scripting Guy!Windows PowerShellPowerTip
Oct 5, 2014
Post comments count0
Post likes count0

Weekend Scripter: Give Your PowerShell Console a Glassy Theme

Doctor Scripto
Doctor Scripto

Summary: Boe Prox shows how to give the Windows PowerShell console a glass-like look. Honorary Scripting Guy, Boe Prox, here today filling in for my good friend, The Scripting Guy. Have you ever sat at your desk while working in the Windows PowerShell console and thought, “Wouldn’t it be great if this console had a more unique look? Per...

Scripting Guy!Windows PowerShellguest blogger
Jul 8, 2014
Post comments count0
Post likes count0

PowerTip: Use PowerShell to Locate the Help File You Need

Doctor Scripto
Doctor Scripto

Summary: Learn how to use Windows PowerShell to find the Help file you need.  How can I figure out the exact name of the Help file that I am looking for about sessions?  Use a wildcard character with Get-Help to narrow down the scope of the Help files: Get-Help about_*session*   Name       ...

Scripting Guy!Windows PowerShellPowerTip
Jul 8, 2014
Post comments count0
Post likes count4

Getting to Know ForEach and ForEach-Object

Doctor Scripto
Doctor Scripto

Summary: Learn the differences between ForEach and ForEach-Object in Windows PowerShell. Honorary Scripting Guy and Windows PowerShell MVP, Boe Prox, here today filling in for my good friend, The Scripting Guy. Today I am going to talk about some differences between using ForEach and using ForEach-Object in day-to-day scripting activities. There ar...

Scripting Guy!Windows PowerShellscripting techniques