Episode 61 – Joe Pruitt from F5 and the ABCs of PowerShell
Listen to this Episode
Audio available
A Podcast about Windows PowerShell.
Listen: ![]()
In This Episode
Tonight on the PowerScripting Podcast we talk with developer and blogger Joe Pruitt from F5 Networks.
News
*
This segment is brought to you by [SAPIEN Technologies](http://sapien.com/).
Â
*
Â
-
PowerGui 1.7
-
Quest has
 put up a survey  to help determine the direction of PowerGUI
-
Don Jones
 has offered to review  submitted scripts
-
Jeffrey Snover recently
 weighed in  on a StackOverflow question on  PowerShell vs Unix Shells
-
Jeff Hicks
 posted a reminder  that Sapien has a new round of online PowerShell fundamentals classes starting March 10th
-
SAPIEN has posted a clarification to their blog about the new
 PrimalScript and PrimalTools software
InterviewÂ
*
Get on the fast track to PowerShell scripting success with ** PowerGUI **
Join ** PowerShell MVPs Dmitry Sotnikov and Kirk Munro ** for a live chat at ** Quest Connect, ** a free, on-demand virtual tradeshow where you can get the answers you need to solve your toughest PowerShell challenges
VisitÂ
 today to learn more and to register
Â
Â
Â
-
rfoust : ## what do you like the most about powershell?
-
glnsize : ## what's your opinion of WS-MGMT?
-
glnsize : ## how deep do you plan on going with your cmdlets? Â what percentage of your product line do you want to cover?
-
ustreamer-61217 : ## will there be an update for v2?
-
glnsize : ## Â doesn't that invalidate the whole perpose of SSL... not posh related but a pet peeve
-
jonwalz-1 : ## there is a memory improvement technique that uses ABC lists. Is that where you got the idea for your lists?
Â
*
Resources
**
*This segment is brought to you by Idera:
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!
**
**
**
**
Â
-
Better
-
Lee shows us how to
 move or delete a really locked file
-
Karl shows us how to search the PoshCode repository
-
Don Jones' Code Review #1:
-
A script to tell you if a
-
Doug has published a script to
 grab data from a Google Docs spreadsheet
-
ShayÂ
shows us how
 to Â
 using default net credentials and web proxy
-
JoelÂ
shows us how
 to Â
cleanly parse NETSH DHCP SERVER
 output using PowerShell
Â
Tips
Â
Â
-
"[Four for loops and their timings](http://dougfinke.com/blog/index.php/2009/02/20/powershell-four-for-loops-and-their-timings/)" blog post
Mailbag
Author : Vivek K.
>
“I have been listening to your postcast’s and you guys are doing great job.
Here is something I want to share as a single liner 🙂
I have text file with the name text1.txt, text2.txt and so on..
I have always been renaming these files manually for long time and now with Power (PowerShell) in my hand I do this..
Get-ChildItem *.txt | Rename-Item -NewName { $_.name -replace ’text(d+)’, ‘$1.text’}
HTH for all those who come across situations when you want to rename such files.. this is for files with name starting with “text”.. I am working on making this script as general as possible.”