Episode 68 – James Brundage from the PowerShell team

Podcast

A Podcast about Windows PowerShell.
Listen:

In This Episode

Tonight on the PowerScripting Podcast we talk to James Brundage from Microsoft.

News

This segment is brought to you by SAPIEN Technologies.
 

Interview

When it comes to scripting, you’re a warrior. But mighty warriors need mighty tools!

Is your scripting might equal to the challenge? Put the power in your hands – download PowerGUI today.

For awesome PowerShell scripting, nothing matches the might of Quest’s PowerGUI. Versatile and easy to use, PowerGUI helps you build commanding scripts that leverage PowerShell’s strength across the enterprise. Now, ruling your domain is easier than ever.
 

Tips from James

Splatting example:

function foo([switch]$force, [switch]$confirm)

Here are some sample scripts from James:

Resources

Want to make Windows PowerShell easier than ever to learn and master? Checkout Idera's PowerShellPlus Professional Edition which is now available for download! The new version has vastly improved code completion and a slick interactive Learning Center. Go to www.idera.com/PodcastPeople to get your copy today!
 

Tips

Contest

Listen to the show to hear details of our "Heroes" contest.  You can win a $25 Amazon.com gift certificate!

{
    $force
    $confirm
}
 
$parameters = @{
     Force = $true
     Confirm = $true
}
 
 
foo @parameters

Comments are closed.