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.
Â
- April 30th is the next PowerShell Virtual User Group meetingÂ
- The PowerShell team is looking for new verbsÂ
- John Cook has published his new e-book titled "PowerShell Day 1Â "
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!
Â
- Joel has published a WPF countdown clock that uses his PowerBoots framework
- Jeff Hicks is having fun with the PowerShell ISEÂ
- Speaking of ISE, the PowerShell team now has a new Start-Demo script
- Joel's advice for getting PowerShell help in a hurryÂ
- Need help explaining the value of PowerShell to a DBAÂ ?
Tips
- Execution policy tip for Windows Server 2008 R2 64-bit from Richard Siddaway
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