
on Instagram: http://instagr.am/p/LYzNw/
Category Archives: No Category
My latest Instagram:

on Instagram: http://instagr.am/p/JE-fK/
My latest Instagram:

on Instagram: http://instagr.am/p/IZVPA/
My latest Instagram: Grapes of Italy

on Instagram: http://instagr.am/p/IZUiF/
My latest Instagram: Little Burji, 838m tooth stick

on Instagram: http://instagr.am/p/IY2tB/
My latest Instagram: Alba

on Instagram: http://instagr.am/p/IT85e/
PowerShell: Display almost anything in a graphical GridView
Out-GridView Dirty Tricks
Out-Gridview is a new cmdlet in PowerShell v.2 which allows you to output objects to a “mini” excel sheet like this:
Get-Process | Out-GridView
However, this only works if .NET Framework 3.51 is installed. While PowerShell requires just .NET 2.0, both Out-GridView and ISE-Editor require 3.51 because of their WPF graphical output.
Out-Gridview will display the same columns you would have seen when you output the objects to the console. You should clone the object first to see all object properties in your gridview:
Get-Process | Select-Object * | Out-Gridview
PowerShell: Create a temporary filename
Thanks to Get-Date, you can easily create unique temporary file names with a timestamp:
(Get-Date -format ‘yyyy-MM-dd hh-mm-ss’) + ‘.tmp’
Microsoft Technet Magazine October 2009
Microsoft TechNet Magazine October 2009
Windows 7: What’s New in Group Policy for Windows 7 and Windows Server 2008 R2
Explore the new and updated Group Policy features in Windows 7 and Windows Server 2008 R2. System administrators will find plenty of goodies, from new Windows PowerShell functionality to updated power options, task scheduling and software restriction policies. Jeremy Moskowitz