A Podcast about Windows PowerShell.
Listen:
In This Episode
We have an interview this week with noted group policy expert, Darren Mar-Elia. And we have no news for you today, but a lot of resources, tips, and one-liners to ease your scripting pains. And don't forget about Quest's excellent book giveaway offer. Keep listening for details on that.
Interview
Interview sponsored by iTripoli.
Admin Script Editor provides a true integrated scripting environment for PowerShell. Advanced features include an integrated PowerShell debugger, advanced code generating tools for Active Directory, Databases, XML files and more. Let's not forget about the exclusive PowerShell forms designer. What's coming up? Soon its innovative and feature-rich ScriptPackger tool will offer support for the dynamic installation of cmdlets! Come see for yourself-- Admin Script Editor v3.5 is availble for a 45 day trial at AdminScriptEditor.com.
Be sure to listen to the show for the interview, it's a great one!
Resources
This segment is sponsored by our friends at Sapien.
- //o// wants us to know that WPF is not only useful for Administrators with a "Hello World" WPF application and another cool demo showing some additional possibilities.
- From Dmitry's PowerBlog, Manage Firewall with PowerShell/PowerGUI
- New powerpack available for PowerGUI which lists your Windows Firewall rules in a table and has useful actions
- Select-StringRecurse function from Jared Par
- A PowerShell version of the Scriptomatic (found on Richard Siddaway's blog )
Tips
The tips this week are brought to you by Quest Software.
For a limited time, Quest is offering Powerscripting Podcast listeners a free copy of Jeffery Hicks upcoming book, Managing Active Directory with Windows PowerShell: TFM from Sapien Press.
Go to www.quest.com/powerscripting to register for your copy and download their free graphical user interface, script editor and Active Directory commands.
- Newsgroup thread: Why are files created by Powershell twice as large?
- John Cook has a new blog post that talks about customizing the PowerShell command prompt
- Blog post from Lance's TextBox: Using PSCredentials without a prompt
One-Liner
# Find files not touched in the last month
dir | ? { $_.LastWriteTime -le ([datetime]::Now).AddDays(-30) } | rm -whatif
# From Keith Hill on the newsgroup, a quick replacement for the pslist.exe util from Sysinternals
Get-Process PowerShell | Select ProcessName -Expand Modules