A Podcast about Windows PowerShell.
Listen:
In This Episode
We have a ton of stuff foryou today. News, Resources, Tips, and even an old favorite, the Cmdlet of the Week.
News
The news is brought to you 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."
- EWeek lists PowerShell as #7 on the list of the best Microsoft products of all time
- SAPIEN has released ActiveXPoSH as a free download
- The ActiveXPoSH COM component released with PrimalScript 2007 Service build 566 is now available as a free download from SAPIEN.com
- Microsoft is looking for people to participate in a PowerShell usability study July 22 to 29th
- Quest has released version 1.1 of their AD cmdlets (from Rod Trent at myITforum.com)
- The theme of this release was native AD permission management and so we added the following cmdlets in the 1.1 release
- Add-QADPermission
- Get-QADObjectSecurity
- Get-QADPermission
- Get-QADRootDSE
- Get-QARSAccessTemplate
- Get-QARSAccessTemplateLink
- New-QARSAccessTemplateLink
- Remove-QADPermission
- Remove-QARSAccessTemplateLink
- Set-QADObjectSecurity
- Set-QARSAccessTemplateLink
- The theme of this release was native AD permission management and so we added the following cmdlets in the 1.1 release
Resources
This segment brought to you by Sapien TechnologiesÂ
- Joel Bennett brings us a great blog post on setting up your user profile it's called "Getting Started with PowerShell 2 - Part1"
- Tomas R. has written several articles on his blog that deal with integrating Biztalk with PowerShell.
- MSDN Virtual Lab- What's new in PowerShell V2 - from The PowerShell Guy
- Jonathan Medd created a PowerGUI powerpack for managing Exchange 2003
- Ben Pearce did a short video interview at Teched for Technet Edge
Tips
This segment brought to you by Quest Software.
Do you have what it takes to be the ultimate script warrior? Find out with Quest’s PowerPack Challenge ’08.
Quest Software is sponsoring a PowerShell Scripting contest where you can test your skills and get paid. Just create some cool PowerShell scripts using Quest’s PowerGUI and then post them to our site. You’ll get a score and our celebrity judges will weigh in as well.
Do you have the muscle to bring home the prize? Check out the details here.
- "Unix like command for tac?" (reverse cat, or in our case Tnetnoc-Teg)
- Keith Hill proposes a neat solution using System.IO.FileStream which I found interesting simply because I had never seen that .NET object used before. However, there was some discusssion on the IRC channel about this and Jaykul pointed out that it would be much faster (for moderate-size files) to just read the whole thing in and print it out in reverse.
- $foo = gc .tac.ps1; [array]::reverse($foo); $foo
- Brandon Shell shows us how to use ADSI to change the local admin password
- Hal has a script up called Get-Parameter.
CmdLet
- get-variable