<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://powershell.com/cs/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>The Lonely Administrator : objects</title><link>http://powershell.com/cs/blogs/lonelyadministrator/archive/tags/objects/default.aspx</link><description>Tags: objects</description><dc:language>en</dc:language><generator>CommunityServer 2008.5 (Build: 30929.2835)</generator><item><title>Pipeline Power</title><link>http://powershell.com/cs/blogs/lonelyadministrator/archive/2012/04/04/pipeline-power.aspx</link><pubDate>Wed, 04 Apr 2012 18:57:24 GMT</pubDate><guid isPermaLink="false">f421715f-7aba-45f0-8a8d-44de5318a3a7:15800</guid><dc:creator>The Lonely Administrator</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://powershell.com/cs/blogs/lonelyadministrator/rsscomments.aspx?PostID=15800</wfw:commentRss><comments>http://powershell.com/cs/blogs/lonelyadministrator/archive/2012/04/04/pipeline-power.aspx#comments</comments><description>Last week I came across a blog post that had a decent example using PowerShell and PowerCLI to get the disk location for all virtual machines. The posted code works and does display the information you might be after. $myVMs &amp;#8230; Continue reading &amp;#8594;...(&lt;a href="http://powershell.com/cs/blogs/lonelyadministrator/archive/2012/04/04/pipeline-power.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://powershell.com/cs/aggbug.aspx?PostID=15800" width="1" height="1"&gt;</description><category domain="http://powershell.com/cs/blogs/lonelyadministrator/archive/tags/Scripting/default.aspx">Scripting</category><category domain="http://powershell.com/cs/blogs/lonelyadministrator/archive/tags/PowerShell/default.aspx">PowerShell</category><category domain="http://powershell.com/cs/blogs/lonelyadministrator/archive/tags/PowerCLI/default.aspx">PowerCLI</category><category domain="http://powershell.com/cs/blogs/lonelyadministrator/archive/tags/Pipeline/default.aspx">Pipeline</category><category domain="http://powershell.com/cs/blogs/lonelyadministrator/archive/tags/objects/default.aspx">objects</category><category domain="http://powershell.com/cs/blogs/lonelyadministrator/archive/tags/ForEach/default.aspx">ForEach</category><category domain="http://powershell.com/cs/blogs/lonelyadministrator/archive/tags/VMware/default.aspx">VMware</category><category domain="http://powershell.com/cs/blogs/lonelyadministrator/archive/tags/PowerCIi/default.aspx">PowerCIi</category></item><item><title>Using Types with Imported CSV Data in PowerShell</title><link>http://powershell.com/cs/blogs/lonelyadministrator/archive/2012/01/19/using-types-with-imported-csv-data-in-powershell.aspx</link><pubDate>Thu, 19 Jan 2012 14:21:50 GMT</pubDate><guid isPermaLink="false">f421715f-7aba-45f0-8a8d-44de5318a3a7:14096</guid><dc:creator>The Lonely Administrator</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://powershell.com/cs/blogs/lonelyadministrator/rsscomments.aspx?PostID=14096</wfw:commentRss><comments>http://powershell.com/cs/blogs/lonelyadministrator/archive/2012/01/19/using-types-with-imported-csv-data-in-powershell.aspx#comments</comments><description>The Import-CSV cmdlet in PowerShell is incredibly useful. You can take any CSV file and pump objects to the pipeline. The cmdlet uses the CSV header as properties for the custom object. PS S:\&amp;#62; import-csv .\testdata.csv Date &amp;#160; &amp;#160;: 1/18/2012...(&lt;a href="http://powershell.com/cs/blogs/lonelyadministrator/archive/2012/01/19/using-types-with-imported-csv-data-in-powershell.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://powershell.com/cs/aggbug.aspx?PostID=14096" width="1" height="1"&gt;</description><category domain="http://powershell.com/cs/blogs/lonelyadministrator/archive/tags/Scripting/default.aspx">Scripting</category><category domain="http://powershell.com/cs/blogs/lonelyadministrator/archive/tags/PowerShell/default.aspx">PowerShell</category><category domain="http://powershell.com/cs/blogs/lonelyadministrator/archive/tags/PowerShell+v2.0/default.aspx">PowerShell v2.0</category><category domain="http://powershell.com/cs/blogs/lonelyadministrator/archive/tags/Where-Object/default.aspx">Where-Object</category><category domain="http://powershell.com/cs/blogs/lonelyadministrator/archive/tags/objects/default.aspx">objects</category><category domain="http://powershell.com/cs/blogs/lonelyadministrator/archive/tags/Import-CSV/default.aspx">Import-CSV</category><category domain="http://powershell.com/cs/blogs/lonelyadministrator/archive/tags/Sort/default.aspx">Sort</category></item><item><title>Friday Fun What’s My Variable</title><link>http://powershell.com/cs/blogs/lonelyadministrator/archive/2012/01/06/friday-fun-what-s-my-variable.aspx</link><pubDate>Fri, 06 Jan 2012 16:32:25 GMT</pubDate><guid isPermaLink="false">f421715f-7aba-45f0-8a8d-44de5318a3a7:13907</guid><dc:creator>The Lonely Administrator</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://powershell.com/cs/blogs/lonelyadministrator/rsscomments.aspx?PostID=13907</wfw:commentRss><comments>http://powershell.com/cs/blogs/lonelyadministrator/archive/2012/01/06/friday-fun-what-s-my-variable.aspx#comments</comments><description>I use scriptblocks quite a bit in my PowerShell work, often saved as variables. These are handy for commands you want to run again, but don&amp;#8217;t necessarily need to turn into permanent functions. $freec=&amp;#123;&amp;#40;get-wmiobject win32_logicaldisk -filter...(&lt;a href="http://powershell.com/cs/blogs/lonelyadministrator/archive/2012/01/06/friday-fun-what-s-my-variable.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://powershell.com/cs/aggbug.aspx?PostID=13907" width="1" height="1"&gt;</description><category domain="http://powershell.com/cs/blogs/lonelyadministrator/archive/tags/PowerShell/default.aspx">PowerShell</category><category domain="http://powershell.com/cs/blogs/lonelyadministrator/archive/tags/Friday+Fun/default.aspx">Friday Fun</category><category domain="http://powershell.com/cs/blogs/lonelyadministrator/archive/tags/FridayFun/default.aspx">FridayFun</category><category domain="http://powershell.com/cs/blogs/lonelyadministrator/archive/tags/Variable/default.aspx">Variable</category><category domain="http://powershell.com/cs/blogs/lonelyadministrator/archive/tags/objects/default.aspx">objects</category><category domain="http://powershell.com/cs/blogs/lonelyadministrator/archive/tags/Type/default.aspx">Type</category><category domain="http://powershell.com/cs/blogs/lonelyadministrator/archive/tags/Get-variable/default.aspx">Get-variable</category></item><item><title>Friday Fun – Get Ranked Object</title><link>http://powershell.com/cs/blogs/lonelyadministrator/archive/2011/12/23/friday-fun-get-ranked-object.aspx</link><pubDate>Fri, 23 Dec 2011 17:25:22 GMT</pubDate><guid isPermaLink="false">f421715f-7aba-45f0-8a8d-44de5318a3a7:13732</guid><dc:creator>The Lonely Administrator</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://powershell.com/cs/blogs/lonelyadministrator/rsscomments.aspx?PostID=13732</wfw:commentRss><comments>http://powershell.com/cs/blogs/lonelyadministrator/archive/2011/12/23/friday-fun-get-ranked-object.aspx#comments</comments><description>Earlier this week on Google Plus, Hal Rottenberg posted a PowerShell idea he had. His goal was to identify a group of objects that would be statistically significant. For example, given a collection of files, group the files by size &amp;#8230; Continue reading...(&lt;a href="http://powershell.com/cs/blogs/lonelyadministrator/archive/2011/12/23/friday-fun-get-ranked-object.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://powershell.com/cs/aggbug.aspx?PostID=13732" width="1" height="1"&gt;</description><category domain="http://powershell.com/cs/blogs/lonelyadministrator/archive/tags/functions/default.aspx">functions</category><category domain="http://powershell.com/cs/blogs/lonelyadministrator/archive/tags/Scripting/default.aspx">Scripting</category><category domain="http://powershell.com/cs/blogs/lonelyadministrator/archive/tags/PowerShell/default.aspx">PowerShell</category><category domain="http://powershell.com/cs/blogs/lonelyadministrator/archive/tags/Pipeline/default.aspx">Pipeline</category><category domain="http://powershell.com/cs/blogs/lonelyadministrator/archive/tags/objects/default.aspx">objects</category><category domain="http://powershell.com/cs/blogs/lonelyadministrator/archive/tags/math/default.aspx">math</category></item><item><title>Friday Fun – Get Number Object</title><link>http://powershell.com/cs/blogs/lonelyadministrator/archive/2011/11/18/friday-fun-get-number-object.aspx</link><pubDate>Fri, 18 Nov 2011 21:33:49 GMT</pubDate><guid isPermaLink="false">f421715f-7aba-45f0-8a8d-44de5318a3a7:13306</guid><dc:creator>The Lonely Administrator</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://powershell.com/cs/blogs/lonelyadministrator/rsscomments.aspx?PostID=13306</wfw:commentRss><comments>http://powershell.com/cs/blogs/lonelyadministrator/archive/2011/11/18/friday-fun-get-number-object.aspx#comments</comments><description>#leftcontainerBox { float:left; position: fixed; top: 60%; left: 70px; } #leftcontainerBox .buttons { float:left; clear:both; margin:4px 4px 4px 4px; padding-bottom:2px; } #bottomcontainerBox { width: 50%; padding-top:... [[ This is a content summary...(&lt;a href="http://powershell.com/cs/blogs/lonelyadministrator/archive/2011/11/18/friday-fun-get-number-object.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://powershell.com/cs/aggbug.aspx?PostID=13306" width="1" height="1"&gt;</description><category domain="http://powershell.com/cs/blogs/lonelyadministrator/archive/tags/functions/default.aspx">functions</category><category domain="http://powershell.com/cs/blogs/lonelyadministrator/archive/tags/Scripting/default.aspx">Scripting</category><category domain="http://powershell.com/cs/blogs/lonelyadministrator/archive/tags/PowerShell/default.aspx">PowerShell</category><category domain="http://powershell.com/cs/blogs/lonelyadministrator/archive/tags/Friday+Fun/default.aspx">Friday Fun</category><category domain="http://powershell.com/cs/blogs/lonelyadministrator/archive/tags/FridayFun/default.aspx">FridayFun</category><category domain="http://powershell.com/cs/blogs/lonelyadministrator/archive/tags/objects/default.aspx">objects</category><category domain="http://powershell.com/cs/blogs/lonelyadministrator/archive/tags/Add-Member/default.aspx">Add-Member</category></item><item><title>Turning IPConfig DNSCache into PowerShell</title><link>http://powershell.com/cs/blogs/lonelyadministrator/archive/2011/11/14/turning-ipconfig-dnscache-into-powershell.aspx</link><pubDate>Mon, 14 Nov 2011 16:23:17 GMT</pubDate><guid isPermaLink="false">f421715f-7aba-45f0-8a8d-44de5318a3a7:13234</guid><dc:creator>The Lonely Administrator</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://powershell.com/cs/blogs/lonelyadministrator/rsscomments.aspx?PostID=13234</wfw:commentRss><comments>http://powershell.com/cs/blogs/lonelyadministrator/archive/2011/11/14/turning-ipconfig-dnscache-into-powershell.aspx#comments</comments><description>Lately I&amp;#8217;ve been writing about techniques to turn command line tools into PowerShell tools. Although I suppose the more accurate description is turning command line output into PowerShell pipelined output. The goal is to run a command line tool...(&lt;a href="http://powershell.com/cs/blogs/lonelyadministrator/archive/2011/11/14/turning-ipconfig-dnscache-into-powershell.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://powershell.com/cs/aggbug.aspx?PostID=13234" width="1" height="1"&gt;</description><category domain="http://powershell.com/cs/blogs/lonelyadministrator/archive/tags/Scripting/default.aspx">Scripting</category><category domain="http://powershell.com/cs/blogs/lonelyadministrator/archive/tags/PowerShell/default.aspx">PowerShell</category><category domain="http://powershell.com/cs/blogs/lonelyadministrator/archive/tags/PowerShell+v2.0/default.aspx">PowerShell v2.0</category><category domain="http://powershell.com/cs/blogs/lonelyadministrator/archive/tags/objects/default.aspx">objects</category><category domain="http://powershell.com/cs/blogs/lonelyadministrator/archive/tags/CommandLine/default.aspx">CommandLine</category><category domain="http://powershell.com/cs/blogs/lonelyadministrator/archive/tags/IPConfig/default.aspx">IPConfig</category><category domain="http://powershell.com/cs/blogs/lonelyadministrator/archive/tags/DNS/default.aspx">DNS</category></item><item><title>Ping IP Range</title><link>http://powershell.com/cs/blogs/lonelyadministrator/archive/2011/11/07/ping-ip-range.aspx</link><pubDate>Mon, 07 Nov 2011 14:40:50 GMT</pubDate><guid isPermaLink="false">f421715f-7aba-45f0-8a8d-44de5318a3a7:13097</guid><dc:creator>The Lonely Administrator</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://powershell.com/cs/blogs/lonelyadministrator/rsscomments.aspx?PostID=13097</wfw:commentRss><comments>http://powershell.com/cs/blogs/lonelyadministrator/archive/2011/11/07/ping-ip-range.aspx#comments</comments><description>Last week I came across a post on using PowerShell, or more specifically a .NET Framework class, to ping a range of computers in an IP subnet. The original post by Thomas Maurer is here. I added a comment. And &amp;#8230; Continue reading &amp;#8594; Read More...(&lt;a href="http://powershell.com/cs/blogs/lonelyadministrator/archive/2011/11/07/ping-ip-range.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://powershell.com/cs/aggbug.aspx?PostID=13097" width="1" height="1"&gt;</description><category domain="http://powershell.com/cs/blogs/lonelyadministrator/archive/tags/Scripting/default.aspx">Scripting</category><category domain="http://powershell.com/cs/blogs/lonelyadministrator/archive/tags/PowerShell/default.aspx">PowerShell</category><category domain="http://powershell.com/cs/blogs/lonelyadministrator/archive/tags/PowerShell+v2.0/default.aspx">PowerShell v2.0</category><category domain="http://powershell.com/cs/blogs/lonelyadministrator/archive/tags/new-object/default.aspx">new-object</category><category domain="http://powershell.com/cs/blogs/lonelyadministrator/archive/tags/Invoke-Command/default.aspx">Invoke-Command</category><category domain="http://powershell.com/cs/blogs/lonelyadministrator/archive/tags/Jobs/default.aspx">Jobs</category><category domain="http://powershell.com/cs/blogs/lonelyadministrator/archive/tags/objects/default.aspx">objects</category><category domain="http://powershell.com/cs/blogs/lonelyadministrator/archive/tags/Test-Connection/default.aspx">Test-Connection</category><category domain="http://powershell.com/cs/blogs/lonelyadministrator/archive/tags/Start-Job/default.aspx">Start-Job</category><category domain="http://powershell.com/cs/blogs/lonelyadministrator/archive/tags/Ping/default.aspx">Ping</category></item><item><title>Convert Text to Object</title><link>http://powershell.com/cs/blogs/lonelyadministrator/archive/2011/10/25/convert-text-to-object.aspx</link><pubDate>Tue, 25 Oct 2011 13:09:31 GMT</pubDate><guid isPermaLink="false">f421715f-7aba-45f0-8a8d-44de5318a3a7:12913</guid><dc:creator>The Lonely Administrator</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://powershell.com/cs/blogs/lonelyadministrator/rsscomments.aspx?PostID=12913</wfw:commentRss><comments>http://powershell.com/cs/blogs/lonelyadministrator/archive/2011/10/25/convert-text-to-object.aspx#comments</comments><description>Today I have another tool in my new battle regarding turning command line tools into PowerShell tools. The bottom line is we want to have objects written to the pipeline. At the PowerShell Deep Dive in Frankfurt there was a &amp;#8230; Continue reading &amp;#8594;...(&lt;a href="http://powershell.com/cs/blogs/lonelyadministrator/archive/2011/10/25/convert-text-to-object.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://powershell.com/cs/aggbug.aspx?PostID=12913" width="1" height="1"&gt;</description><category domain="http://powershell.com/cs/blogs/lonelyadministrator/archive/tags/functions/default.aspx">functions</category><category domain="http://powershell.com/cs/blogs/lonelyadministrator/archive/tags/Scripting/default.aspx">Scripting</category><category domain="http://powershell.com/cs/blogs/lonelyadministrator/archive/tags/PowerShell/default.aspx">PowerShell</category><category domain="http://powershell.com/cs/blogs/lonelyadministrator/archive/tags/DeepDive/default.aspx">DeepDive</category><category domain="http://powershell.com/cs/blogs/lonelyadministrator/archive/tags/Conferences/default.aspx">Conferences</category><category domain="http://powershell.com/cs/blogs/lonelyadministrator/archive/tags/new-object/default.aspx">new-object</category><category domain="http://powershell.com/cs/blogs/lonelyadministrator/archive/tags/objects/default.aspx">objects</category><category domain="http://powershell.com/cs/blogs/lonelyadministrator/archive/tags/hashtable/default.aspx">hashtable</category><category domain="http://powershell.com/cs/blogs/lonelyadministrator/archive/tags/CommandLine/default.aspx">CommandLine</category></item><item><title>Friday Fun Convert Object to Hash Table</title><link>http://powershell.com/cs/blogs/lonelyadministrator/archive/2011/10/21/friday-fun-convert-object-to-hash-table.aspx</link><pubDate>Fri, 21 Oct 2011 14:13:07 GMT</pubDate><guid isPermaLink="false">f421715f-7aba-45f0-8a8d-44de5318a3a7:12862</guid><dc:creator>The Lonely Administrator</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://powershell.com/cs/blogs/lonelyadministrator/rsscomments.aspx?PostID=12862</wfw:commentRss><comments>http://powershell.com/cs/blogs/lonelyadministrator/archive/2011/10/21/friday-fun-convert-object-to-hash-table.aspx#comments</comments><description>I&amp;#8217;ve been working on a few PowerShell projects recently and one requirement I had was to turn an object into a hash table. I thought this was something that was already handled in PowerShell but I couldn&amp;#8217;t find a cmdlet &amp;#8230; Continue reading...(&lt;a href="http://powershell.com/cs/blogs/lonelyadministrator/archive/2011/10/21/friday-fun-convert-object-to-hash-table.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://powershell.com/cs/aggbug.aspx?PostID=12862" width="1" height="1"&gt;</description><category domain="http://powershell.com/cs/blogs/lonelyadministrator/archive/tags/PowerShell/default.aspx">PowerShell</category><category domain="http://powershell.com/cs/blogs/lonelyadministrator/archive/tags/Function/default.aspx">Function</category><category domain="http://powershell.com/cs/blogs/lonelyadministrator/archive/tags/Friday+Fun/default.aspx">Friday Fun</category><category domain="http://powershell.com/cs/blogs/lonelyadministrator/archive/tags/Miscellaneous/default.aspx">Miscellaneous</category><category domain="http://powershell.com/cs/blogs/lonelyadministrator/archive/tags/objects/default.aspx">objects</category><category domain="http://powershell.com/cs/blogs/lonelyadministrator/archive/tags/get-member/default.aspx">get-member</category><category domain="http://powershell.com/cs/blogs/lonelyadministrator/archive/tags/hashtable/default.aspx">hashtable</category></item><item><title>Select Object Properties with Values</title><link>http://powershell.com/cs/blogs/lonelyadministrator/archive/2011/08/16/select-object-properties-with-values.aspx</link><pubDate>Tue, 16 Aug 2011 13:45:04 GMT</pubDate><guid isPermaLink="false">f421715f-7aba-45f0-8a8d-44de5318a3a7:11857</guid><dc:creator>The Lonely Administrator</dc:creator><slash:comments>0</slash:comments><wfw:commentRss xmlns:wfw="http://wellformedweb.org/CommentAPI/">http://powershell.com/cs/blogs/lonelyadministrator/rsscomments.aspx?PostID=11857</wfw:commentRss><comments>http://powershell.com/cs/blogs/lonelyadministrator/archive/2011/08/16/select-object-properties-with-values.aspx#comments</comments><description>Here&amp;#8217;s another concept I know I&amp;#8217;ve written about in the past but that needed an update. A common technique I use when exploring and discovering objects is to pipe the object to Select-Object specifying all properties, get-service spooler &amp;#124;...(&lt;a href="http://powershell.com/cs/blogs/lonelyadministrator/archive/2011/08/16/select-object-properties-with-values.aspx"&gt;read more&lt;/a&gt;)&lt;img src="http://powershell.com/cs/aggbug.aspx?PostID=11857" width="1" height="1"&gt;</description><category domain="http://powershell.com/cs/blogs/lonelyadministrator/archive/tags/functions/default.aspx">functions</category><category domain="http://powershell.com/cs/blogs/lonelyadministrator/archive/tags/Scripting/default.aspx">Scripting</category><category domain="http://powershell.com/cs/blogs/lonelyadministrator/archive/tags/PowerShell/default.aspx">PowerShell</category><category domain="http://powershell.com/cs/blogs/lonelyadministrator/archive/tags/PowerShell+v2.0/default.aspx">PowerShell v2.0</category><category domain="http://powershell.com/cs/blogs/lonelyadministrator/archive/tags/Select-Object/default.aspx">Select-Object</category><category domain="http://powershell.com/cs/blogs/lonelyadministrator/archive/tags/objects/default.aspx">objects</category><category domain="http://powershell.com/cs/blogs/lonelyadministrator/archive/tags/get-member/default.aspx">get-member</category></item></channel></rss>