Today we interview Michael Farnia from CloudBerry Labs. Plus our usual news, resources, and tips.
News
When it comes to scripting, youâre a warrior. But mighty warriors need mighty tools! For
awesome PowerShell scripting, nothing matches the might of Questâs
PowerGUI. Versatile and easy to use, PowerGUI helps you build
commanding scripts that leverage PowerShellâs strength across the
enterprise. Now, ruling your domain is easier than ever.
Is your scripting might equal to the challenge? Put the power in your hands â download PowerGUI today
- SAN vendor Compellent has just released a snapin with over 60-cmdlets.
- SAPIEN's blog has some details about new features coming in 2009.
- object browser
- cmdlet tree
- embedded console
- Dmitry points us to a post on the PowerGUI.org forums with details of version 1.2 of their AD cmdlets.
- Due Q1 or early Q2 2009
- "Release
would add some additional AD management cmdlets (like tombstone
enumeration and un-delete), additional filtering when enumerating group
memberships, user-friendly filtering by creation and last modification
time, etc. More would come for proxy mode, in particular access to
ActiveRoles Server change history storage and approval tasks queue.
Also, we are going to make another iteration with performance
optimization."
- Back on Nov 21st, Joel released a new version of his Get-DNS cmdlet which works like dig on Linux.
Interview
Admin
Script Editor (which recently received Windows IT Pro's top award)
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.
Come see for yourself-- Admin Script Editor v3.5 is availble for a 45
day trial at AdminScriptEditor.com.
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!
Gotcha
foreach ($OU in $myOUs) {
$myUsers = Get-QADobject -SearchRoot $OU -LdapFilter $myFilter -IncludedProperties mailNickName
$myUsers | Format-Table mailnickname
}
out-lineoutput : Object of type "Microsoft.PowerShell.Commands.Internal.Format.FormatStartData" is not legal or not in the correct sequence. This is likely caused by a user-specified "format-table" command which is conflicting with the default formatting.
One-Liner
This was modified from an idea originally by the PowerShell Jedi. Go check out his new blog.
([wmiclass]"\\$computer\root\cimv2:win32_product").Install($msi)