Showing archive results for 2014

Oct 22, 2014
Post comments count0
Post likes count0

PowerTip: Use PowerShell 4.0 Where Operator to Filter

Doctor Scripto

Summary: Use Windows PowerShell 4.0 Where operator to filter results.  How can I use a Where operator in Windows PowerShell (without using the pipeline or Where-Object)            to filter through processes?  Use Get-Process  to group the processes into a collection, t...

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

Practical Reasons for Upgrading to PowerShell 4.0

Doctor Scripto

Summary: Guest blogger and Windows PowerShell MVP, Jeff Wouters, provides several practical reasons for upgrading to Windows PowerShell 4.0. Microsoft Scripting Guy, Ed Wilson, is here. Today we continue our “Why Upgrade to Windows PowerShell 4.0” series with a guest blog post written by Jeff Wouters. Jeff is a Windows PowerShell MVP in...

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

PowerTip: Replace Characters in String that Is Not Part of Group

Doctor Scripto

Summary: Use Windows PowerShell to replace all characters in a string that is not part of a group. How can I use Windows PowerShell to remove all the non-alphabetic characters in the following string?           (The single quotation marks are not part of the string.)'({Abcde})' Create a regular expression pat...

Scripting Guy!Windows PowerShellscripting techniques
Oct 21, 2014
Post comments count0
Post likes count0

Upgrade to PowerShell 4.0 Because It Is Easier to Use

Doctor Scripto

Summary: Microsoft PowerShell MVP, Teresa Wilson (aka Scripting Wife), talks about upgrading to Windows PowerShell 4.0 because it is easier to use. Microsoft Scripting Guy, Ed Wilson, is here. Today I continue my series of posts about upgrading to Windows PowerShell 4.0 by turning over the keyboard to Windows PowerShell MVP, Teresa Wilson...

Scripting Guy!Windows PowerShellscripting techniques
Oct 20, 2014
Post comments count0
Post likes count0

PowerTip: Determine PowerShell Version on Your System

Doctor Scripto

Summary: Learn how to determine the version of Windows PowerShell installed on your system. How can I discover the version of Windows PowerShell that is installed on a particular system?   Use the $psversiontable built-in variable to get a display such as this:Name          ...

PowerTipRichard SiddawayWindows Windows PowerShell