Scripting Blog [archived]

Formerly known as the "Hey, Scripting Guy!" blog

Playing with PowerShell ISE Preview

Summary: This blog post explores the features and functionality of the newly released Windows PowerShell ISE Preview edition that runs on Windows PowerShell 5.0. After you install the Windows PowerShell ISE preview from the PowerShell Gallery and take a look at the modules and functions it provides, it is time to fire up the new ISE and play...

A first look at Windows PowerShell ISE Preview

Summary: Take a first look at the newly released Windows PowerShell ISE Preview. Good morning everyone. Ed Wilson here. I can tell you that the list of speakers for PowerShell Saturday on in Tampa March 19, 2016 looks really impressive. There are going to be seven MVPs and six Microsoftees there! When it comes to Microsoft Automation, this is ...

PowerTip: Find if Variable Is Array

Summary: Use Windows PowerShell to find if a variable is an array. (image)  How can I use Windows PowerShell to find if a variable contains an array? (image)  Use the –is operator, and test to see if it is a type of [array], for example: $a = 1,2,4,5,6,7 $a -is [array] (image...