Podcast

Episode 61 – Joe Pruitt from F5 and the ABCs of PowerShell

Jonathan Walz
3 min read
Share:

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

  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





                      **




                        *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

  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

                             

                            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.”