A Podcast about Windows PowerShell.
In This Episode
Today we have a rockin’ roundtable which includes:
- Jeffrey Snover
- Don Jones
- Alex Riedel
- Kirk Munro
And of course we’ll throw in our other usual goodies.
News
The news is brought to you by iTripoli.
What can you really do with PowerShell? With Admin Script Editor the question becomes what can’t you do with PowerShell? Besides all the advanced code generating tools this is the only tool offering a true PowerShell Forms Designer. To illustrate what can be done the guys at iTripoli created a full-featured MP3/Podcast player written entirely in PowerShell and delivered as a single script. Check it out at adminscripteditor.com/player.
- Sapien has announced a forthcoming forms editor called PrimalForms which will allow you to create forms, save them as XML and create PowerShell code. On top of that they are going to release it for free!
- Be sure to catch the UKÂ PowerShell UG: November 20th in Reading
- Dmitry will be presenting some PowerShell sessions at Quest Connect on Oct 22nd-23rd.
- New software release on IIS.net: Microsoft Web Deployment Tool – Beta 1 Go Live
- If you’d like to get an early peek at Richard Siddaway’s new book PowerShell in Practice, you can do so on Manning’s site.
Roundtable
This segment is brought to you by Quest:
Quest Software is offering Powerscripting Podcast listeners a free copy of Jeffery Hicks new book, Managing Active Directory with Windows PowerShell: TFM from Sapien Press. Visit quest.com/powerscripting to register for your copy, before they run out. While you’re there download their free graphical user interface, script editor and Active Directory commands.
- A Thousand Things 1% Better
- What’s most important for a posh newbie to learn?
- JeffHicks : ## What do you see as the biggest obstacles to PowerShell adoption?
- “PowerShell isn’t complete?”
- <Jay> no admin worth his salt is going to go through and update hundreds of servers with yet another thing to patch, another to mantain, another security to worry about, reboots, touching things, etc, just to be able to run a non complete technology that they haven’t learned yet because it is a pain in the ass, and oh, it’s not complete
- cartershanklin : ## Jeffrey, do you think user adoption of PS is faster or slower than you anticipated?
- Script vs. Shell
- Coolest use of PowerShell that you’ve seen–and what’s to come.
- What third-party software is missing?
- Is PowerShell useful for <insert concept here>?
- e.g. cloud computing
Ustream Questions
- rfoust : ## what is the easiest way for non-developers to find .net methods to work with in powershell? Â searching msdn is a pain
- JeffHicks : ## Where will PowerShell be in 3-5 years?
- JeffHicks : ## What will MS take responsiblity for in PowerShell and what do they expect 3rd parties to support or add?
- rfoust : ## whats a good bridge for scripters wanting to convert scripts into real c# compiled cmdlets
- rfoust : ## do you see cmdlet naming conflicts becoming a problem in the future? Â not the namespace but the actual cmdlet name
- rfoust : ## do you see scripts running as a service anytime in the future?
- cartershanklin : ## script scheduling, same question.
- ye110wbeard : ## Can Powershell be used to email backup logs made in W2K8 Server backup?
- rfoust : ## is microsoft helping Pash devlopment any?
- JeffHicks : ## Is MS promoting PowerShell at the management level in orgs or letting it bubble up from the admins?
- makson : ## is there a cmdlet for powershell that is equivelent to sed in bash?
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!
- From the SAPIEN blog:Â PrimalScript: Did you know about Snippets?
- New PowerGUI PowerPack:Â PowerShell for WSUS
- From Brandon Shell, now writing on TurboChargeAD.org:Â Bulking Importing User from CSV file using Quest cmdlets
Gotcha
From Stephen Campbell:
Open a cmd prompt on a Win2003 server and type the following:
mkdir c:test1
net share test1=c:test1 /grant:everyone,full
Now type the name commands in Powershell
new-item c:test2 -type directory
net share test2=c:test2 /grant:everyone,full
When I do the net share command in Powershell, the /Grant returns a syntax error.  Until I remembered about the comma!! The following works great.
net share test2=c:test2 /grant:everyone`,full
mkdir c:test1
net share test1=c:test1 /grant:everyone,full
new-item c:test2 -type directory
net share test2=c:test2 /grant:everyone,full
net share test2=c:test2 /grant:everyone`,full