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
Â
Â
- PowerGui 1.7Â has been released
- 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 www.quest.com/poshchat 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
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 Warcraft gear script
- Lee shows us how to move or delete a really locked file
- Karl shows us how to search the PoshCode repository directly from Windows 7
- Don Jones' Code Review #1:Â server audit script
- A script to tell you if a partition is aligned or not
- Doug has published a script to grab data from a Google Docs spreadsheet
- Shay shows us how to create a web client request using default net credentials and web proxy
- Joel shows us how to cleanly parse NETSH DHCP SERVER output using PowerShell
Â
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."