<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>
<channel>
	<title>Comments on: PowerShell Parameters, Objects, and Formatting</title>
	<atom:link href="http://www.powershellpro.com/powershell-tutorial-introduction/powershell-parameters-objects-and-formatting/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.powershellpro.com</link>
	<description>Sharing the Experience</description>
	<pubDate>Wed, 07 Jan 2009 01:19:52 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.5</generator>
		<item>
		<title>By: Saad S</title>
		<link>http://www.powershellpro.com/powershell-tutorial-introduction/powershell-parameters-objects-and-formatting/#comment-264</link>
		<dc:creator>Saad S</dc:creator>
		<pubDate>Fri, 05 Dec 2008 22:29:11 +0000</pubDate>
		<guid isPermaLink="false">http://www.powershellpro.com/powershell-tutorial-introduction/powershell-parameters-objects-and-formatting/#comment-264</guid>
		<description>Get-Process -name manythanks &#124; ConvertTo-html &#124;out-file "thanks.html" 

Invoke-Item thanks.html 

Wonderful work... I absolutely love your tutorials!!! 

:D</description>
		<content:encoded><![CDATA[<p>Get-Process -name manythanks | ConvertTo-html |out-file &#8220;thanks.html&#8221; </p>
<p>Invoke-Item thanks.html </p>
<p>Wonderful work&#8230; I absolutely love your tutorials!!! </p>
<p> <img src='http://www.powershellpro.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: James</title>
		<link>http://www.powershellpro.com/powershell-tutorial-introduction/powershell-parameters-objects-and-formatting/#comment-236</link>
		<dc:creator>James</dc:creator>
		<pubDate>Tue, 21 Oct 2008 21:11:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.powershellpro.com/powershell-tutorial-introduction/powershell-parameters-objects-and-formatting/#comment-236</guid>
		<description>bob, you're probably in an empty directory.  You'll get that error if you try that command in a directory without any childitems.</description>
		<content:encoded><![CDATA[<p>bob, you&#8217;re probably in an empty directory.  You&#8217;ll get that error if you try that command in a directory without any childitems.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: bob</title>
		<link>http://www.powershellpro.com/powershell-tutorial-introduction/powershell-parameters-objects-and-formatting/#comment-217</link>
		<dc:creator>bob</dc:creator>
		<pubDate>Fri, 19 Sep 2008 03:14:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.powershellpro.com/powershell-tutorial-introduction/powershell-parameters-objects-and-formatting/#comment-217</guid>
		<description>You say to type -&#62;  Get-ChildItem &#124; Get-Member

I am unable to run  Get-ChildItem &#124; Get-Member...

I get the following error -&#62;

Get-Member : No object has been specified to get-member.
At line:1 char:26
+ Get-ChildItem &#124; Get-Member &#60;&#60;&#60;&#60;

Can you assist?  Why ?
Thanks</description>
		<content:encoded><![CDATA[<p>You say to type -&gt;  Get-ChildItem | Get-Member</p>
<p>I am unable to run  Get-ChildItem | Get-Member&#8230;</p>
<p>I get the following error -&gt;</p>
<p>Get-Member : No object has been specified to get-member.<br />
At line:1 char:26<br />
+ Get-ChildItem | Get-Member &lt;&lt;&lt;&lt;</p>
<p>Can you assist?  Why ?<br />
Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: NetGuyDave</title>
		<link>http://www.powershellpro.com/powershell-tutorial-introduction/powershell-parameters-objects-and-formatting/#comment-183</link>
		<dc:creator>NetGuyDave</dc:creator>
		<pubDate>Tue, 12 Aug 2008 19:15:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.powershellpro.com/powershell-tutorial-introduction/powershell-parameters-objects-and-formatting/#comment-183</guid>
		<description>Thanks Jesse.</description>
		<content:encoded><![CDATA[<p>Thanks Jesse.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jesse Hamrick</title>
		<link>http://www.powershellpro.com/powershell-tutorial-introduction/powershell-parameters-objects-and-formatting/#comment-180</link>
		<dc:creator>Jesse Hamrick</dc:creator>
		<pubDate>Tue, 12 Aug 2008 16:27:11 +0000</pubDate>
		<guid isPermaLink="false">http://www.powershellpro.com/powershell-tutorial-introduction/powershell-parameters-objects-and-formatting/#comment-180</guid>
		<description>Yes,
PowerShell allows you to create .NET objects using the new-object cmdlet. For example: $theDate = new-object -Typename System.DateTime. I am working on a .NET tutorial that will assist with understanding this concept.
Sound like you are lumping all objects in the same category, you will learn to work with .NET, ADSI, WMI, and COM objects. They are all objects but not the same type of object. For now it is important to understand the difference between PowerShell and the Windows Command Prompt which is PowerShell commands output objects, not blocks of text. Objects have properties and methods giving you a higher degree of power and control.</description>
		<content:encoded><![CDATA[<p>Yes,<br />
PowerShell allows you to create .NET objects using the new-object cmdlet. For example: $theDate = new-object -Typename System.DateTime. I am working on a .NET tutorial that will assist with understanding this concept.<br />
Sound like you are lumping all objects in the same category, you will learn to work with .NET, ADSI, WMI, and COM objects. They are all objects but not the same type of object. For now it is important to understand the difference between PowerShell and the Windows Command Prompt which is PowerShell commands output objects, not blocks of text. Objects have properties and methods giving you a higher degree of power and control.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: NetGuyDave</title>
		<link>http://www.powershellpro.com/powershell-tutorial-introduction/powershell-parameters-objects-and-formatting/#comment-179</link>
		<dc:creator>NetGuyDave</dc:creator>
		<pubDate>Tue, 12 Aug 2008 15:11:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.powershellpro.com/powershell-tutorial-introduction/powershell-parameters-objects-and-formatting/#comment-179</guid>
		<description>Jesse, I'm creating objects?  I thought I was just enumerating the objects and organizing them into meaningfull order? Sorry if this seems like a stupid question but I think it is an important concept if I'm not understaning it correctly.  Objects, from what I understand, are users, computers, printers, wmi, adsi, and other information - I'm not creating anything, I'm just looking at data and possibly modifying it.  I don't get the "allows you to create .NET objects" statement. Are you trying to say that I'm enumerating the objects into a powershell variable, which then allows me to do something with the data? Thank you, Dave</description>
		<content:encoded><![CDATA[<p>Jesse, I&#8217;m creating objects?  I thought I was just enumerating the objects and organizing them into meaningfull order? Sorry if this seems like a stupid question but I think it is an important concept if I&#8217;m not understaning it correctly.  Objects, from what I understand, are users, computers, printers, wmi, adsi, and other information - I&#8217;m not creating anything, I&#8217;m just looking at data and possibly modifying it.  I don&#8217;t get the &#8220;allows you to create .NET objects&#8221; statement. Are you trying to say that I&#8217;m enumerating the objects into a powershell variable, which then allows me to do something with the data? Thank you, Dave</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: NetGuyDave</title>
		<link>http://www.powershellpro.com/powershell-tutorial-introduction/powershell-parameters-objects-and-formatting/#comment-170</link>
		<dc:creator>NetGuyDave</dc:creator>
		<pubDate>Thu, 07 Aug 2008 16:43:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.powershellpro.com/powershell-tutorial-introduction/powershell-parameters-objects-and-formatting/#comment-170</guid>
		<description>Thank you. Your tutorials are really helpful. NetguyDave.</description>
		<content:encoded><![CDATA[<p>Thank you. Your tutorials are really helpful. NetguyDave.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jesse Hamrick</title>
		<link>http://www.powershellpro.com/powershell-tutorial-introduction/powershell-parameters-objects-and-formatting/#comment-169</link>
		<dc:creator>Jesse Hamrick</dc:creator>
		<pubDate>Wed, 06 Aug 2008 19:01:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.powershellpro.com/powershell-tutorial-introduction/powershell-parameters-objects-and-formatting/#comment-169</guid>
		<description>PowerShell allows you to create .NET objects and explore the members using "Get-Member."  Cmdlets passed via the pipeline are .NET objects. You can also use get-member on other objects such as WMI objects, you will learn how to do this in the WMI Tutorials on this site. The subject is examined in WMI tutorial 1. You will see how we "focus" or bind to the object and enumerate...</description>
		<content:encoded><![CDATA[<p>PowerShell allows you to create .NET objects and explore the members using &#8220;Get-Member.&#8221;  Cmdlets passed via the pipeline are .NET objects. You can also use get-member on other objects such as WMI objects, you will learn how to do this in the WMI Tutorials on this site. The subject is examined in WMI tutorial 1. You will see how we &#8220;focus&#8221; or bind to the object and enumerate&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: NetGuyDave</title>
		<link>http://www.powershellpro.com/powershell-tutorial-introduction/powershell-parameters-objects-and-formatting/#comment-168</link>
		<dc:creator>NetGuyDave</dc:creator>
		<pubDate>Tue, 05 Aug 2008 22:39:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.powershellpro.com/powershell-tutorial-introduction/powershell-parameters-objects-and-formatting/#comment-168</guid>
		<description>You stated...." "Get-Member." This cmdlet is used to examine what properties and methods are available to an object."   But it appears that get-member is only used to view the properties and methods of cmdlets, not objects.  To get properties of an object wouldn't you have to focus on an object, not a cmdlet? What am I missing? Thanks, Netguydave</description>
		<content:encoded><![CDATA[<p>You stated&#8230;.&#8221; &#8220;Get-Member.&#8221; This cmdlet is used to examine what properties and methods are available to an object.&#8221;   But it appears that get-member is only used to view the properties and methods of cmdlets, not objects.  To get properties of an object wouldn&#8217;t you have to focus on an object, not a cmdlet? What am I missing? Thanks, Netguydave</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Christophe</title>
		<link>http://www.powershellpro.com/powershell-tutorial-introduction/powershell-parameters-objects-and-formatting/#comment-167</link>
		<dc:creator>Christophe</dc:creator>
		<pubDate>Tue, 05 Aug 2008 11:54:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.powershellpro.com/powershell-tutorial-introduction/powershell-parameters-objects-and-formatting/#comment-167</guid>
		<description>thx for these tutorials m8,
its helping me a lot to understand scripting in general.</description>
		<content:encoded><![CDATA[<p>thx for these tutorials m8,<br />
its helping me a lot to understand scripting in general.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
