Episode 52 – CloudBerry Labs
Listen to this Episode
Audio available
A Podcast about Windows PowerShell.
Listen: ![]()
In This Episode
Today on the PowerScripting Podcast 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 ““ *
-
SAN vendor Compellent [has just released](http://www.compellent.com/Products/Solutions/Enterprise-Automation.aspx) a snapin with over 60-cmdlets.
-
SAPIEN's blog has [some details](http://blog.sapien.com/index.php/2008/12/02/objects-in-motion/) about new features coming in 2009.
object browser
-
cmdlet tree
-
embedded console
-
Dmitry points us to a post on the [PowerGUI.org](http://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](http://huddledmasses.org/update-to-poshnet-and-get-dns/) 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](http://adminscripteditor.com/).*
**
-
CloudBerry Labs:Â [http://www.cloudberrylab.com/](http://www.cloudberrylab.com/)
-
The snapin [http://www.cloudberrylab.com/?id=14](http://www.cloudberrylab.com/?id=14)
-
JeffHicks : ##I don't know much about Amazon's S3 service.  What is it  and why would I care as a Windows admin?
-
rfoust : ## how does authentication work?
-
rfoust: ## can you be connected to two accounts at once?
-
rfoust : ## is the powershell support cmdlets or scripts or both?
-
ustreamer-62178 : ## will your cloudberry stuff support Rackspace's cloud?
-
rfoust : ## can it auto recover from failed transfers?
-
cartershanklin : ## Are they looking to do more than storage? Deploy apps to EC2? Or anything else with EC2?
-
JeffHicks : ##do the powershell cmdlets duplicate everything you can do in the GUI? Or ore are the extra features in the GUI or PowerShell onl?
-
cartershanklin : ## No extensibility / API I mean
-
JeffHicks : ##how is their app licensed?
-
sepeck : ## Is this for v1 or v2 and anything related to the cloud computing tools announced with Azure at the MS PDC?
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 ](http://www.idera.com/PodcastPeople)* to get your copy today!*
-
Network troubleshooting script from Thomas Lee: Send-UDPDatagran.ps1. You can also download all of his scripts in one go at his script library.
-
The latest RTWA eJournal has an article by Jeff Hicks titled “Practical PowerShell: Managing WMI Events with Windows PowerShell, Part 1”.
-
Correlate VMware disk usage withthis script by Hugo Peeters. Goes from VM’s logical disks, to partitions, to vmdks, to datastores.
-
The guys at Microsoft’s security vulnerability blog have posted a script that will disable protocol handlers to reduce the attack surface on a PC.
-
*Script to download all of the PDC content *
-
*Here’s a great list of one-liners *
-
*PowerShell WMI Wizard from Jeff Hicks *
**
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]”$computerrootcimv2:win32_product").Install($msi)