<?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 for TechProsaic</title>
	<atom:link href="http://halr9000.com/comments/feed" rel="self" type="application/rss+xml" />
	<link>http://halr9000.com</link>
	<description>(powershell &#38; other stuff)</description>
	<pubDate>Fri, 05 Sep 2008 19:04:18 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6</generator>
		<item>
		<title>Comment on Congratulations to the PowerGUI PowerPack Contest Winners! by Alan Renouf</title>
		<link>http://halr9000.com/article/604#comment-6910</link>
		<dc:creator>Alan Renouf</dc:creator>
		<pubDate>Wed, 03 Sep 2008 14:54:30 +0000</pubDate>
		<guid isPermaLink="false">http://halr9000.com/article/604#comment-6910</guid>
		<description>Congratulations to all and especially UK's powershell GURU Jonathan Medd !

Well done Hal for the judging, I guess it must have been hard.</description>
		<content:encoded><![CDATA[<p>Congratulations to all and especially UK&#8217;s powershell GURU Jonathan Medd !</p>
<p>Well done Hal for the judging, I guess it must have been hard.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on My Twitter Chat with Nathan Fillion by halr9000</title>
		<link>http://halr9000.com/article/603#comment-6909</link>
		<dc:creator>halr9000</dc:creator>
		<pubDate>Tue, 02 Sep 2008 15:42:36 +0000</pubDate>
		<guid isPermaLink="false">http://halr9000.com/article/603#comment-6909</guid>
		<description>Shush!  I don't want to hear it!

Next, you will tell me that http://twitter.com/feliciaday isn't really Felicia Day!</description>
		<content:encoded><![CDATA[<p>Shush!  I don&#8217;t want to hear it!</p>
<p>Next, you will tell me that <a href="http://twitter.com/feliciaday" onclick="javascript:pageTracker._trackPageview('/twitter.com');" rel="nofollow">http://twitter.com/feliciaday</a> isn&#8217;t really Felicia Day!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on My Twitter Chat with Nathan Fillion by Anon</title>
		<link>http://halr9000.com/article/603#comment-6908</link>
		<dc:creator>Anon</dc:creator>
		<pubDate>Tue, 02 Sep 2008 15:37:42 +0000</pubDate>
		<guid isPermaLink="false">http://halr9000.com/article/603#comment-6908</guid>
		<description>Sorry to disappoint you, but it's really not Nathan Fillion</description>
		<content:encoded><![CDATA[<p>Sorry to disappoint you, but it&#8217;s really not Nathan Fillion</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Go check out PowerShellASP by halr9000</title>
		<link>http://halr9000.com/article/513#comment-6907</link>
		<dc:creator>halr9000</dc:creator>
		<pubDate>Tue, 02 Sep 2008 11:41:11 +0000</pubDate>
		<guid isPermaLink="false">http://halr9000.com/article/513#comment-6907</guid>
		<description>You are looking at it.  :)</description>
		<content:encoded><![CDATA[<p>You are looking at it.  <img src='http://halr9000.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Go check out PowerShellASP by opp</title>
		<link>http://halr9000.com/article/513#comment-6906</link>
		<dc:creator>opp</dc:creator>
		<pubDate>Tue, 02 Sep 2008 08:41:28 +0000</pubDate>
		<guid isPermaLink="false">http://halr9000.com/article/513#comment-6906</guid>
		<description>please put the whole code</description>
		<content:encoded><![CDATA[<p>please put the whole code</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Call for Script Ideas: VMware PowerShell Toolkit by halr9000</title>
		<link>http://halr9000.com/article/464#comment-6901</link>
		<dc:creator>halr9000</dc:creator>
		<pubDate>Fri, 29 Aug 2008 14:20:39 +0000</pubDate>
		<guid isPermaLink="false">http://halr9000.com/article/464#comment-6901</guid>
		<description>Most definitely.  

# list all templates in a single folder
get-folder "Templates" &#124; get-template

Datastores are not associated with clusters, they are attached to host servers, so we have to do this:
# list datastores avail to cluster member host server
(get-cluster "DRS cluster Foo" &#124; get-vmhost)[0] &#124; get-datastore

The (blah)[0] stuff grabs only the first host server in the cluster.  You could pipe get-vmhost to get-datastore, but you'd get duplicate results.</description>
		<content:encoded><![CDATA[<p>Most definitely.  </p>
<p># list all templates in a single folder<br />
get-folder &#8220;Templates&#8221; | get-template</p>
<p>Datastores are not associated with clusters, they are attached to host servers, so we have to do this:<br />
# list datastores avail to cluster member host server<br />
(get-cluster &#8220;DRS cluster Foo&#8221; | get-vmhost)[0] | get-datastore</p>
<p>The (blah)[0] stuff grabs only the first host server in the cluster.  You could pipe get-vmhost to get-datastore, but you&#8217;d get duplicate results.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Call for Script Ideas: VMware PowerShell Toolkit by new-to-powershell</title>
		<link>http://halr9000.com/article/464#comment-6900</link>
		<dc:creator>new-to-powershell</dc:creator>
		<pubDate>Fri, 29 Aug 2008 13:31:29 +0000</pubDate>
		<guid isPermaLink="false">http://halr9000.com/article/464#comment-6900</guid>
		<description>is it possible to create a script that will  display list of available templates (all in "template" folder) and list of all clusters and a list of all datastore that are available to the chosen cluster - so that a remote admin can simply deploy a vm from a template he selected?</description>
		<content:encoded><![CDATA[<p>is it possible to create a script that will  display list of available templates (all in &#8220;template&#8221; folder) and list of all clusters and a list of all datastore that are available to the chosen cluster - so that a remote admin can simply deploy a vm from a template he selected?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Call for Script Ideas: VMware PowerShell Toolkit by VMWareLearner</title>
		<link>http://halr9000.com/article/464#comment-6899</link>
		<dc:creator>VMWareLearner</dc:creator>
		<pubDate>Thu, 28 Aug 2008 19:52:05 +0000</pubDate>
		<guid isPermaLink="false">http://halr9000.com/article/464#comment-6899</guid>
		<description>Yes, that is a bummer, when you have to deploy 30 VMs at a time with static IP addresses.

When I did try with a known good customization tempate and the following command line command line, 
get-template w2k3stdR2-template &#124; new-vm -vmhost mytestesx01.internal.dev.org -name ScriptVM01 -OSCustomizationSpec PCK_W2k3_32BIT_STD

the process runs to about 95% then fails with this error:
8/28/2008 3:48:01 PM	New-VM	BB572FA5-355A-4225-BBEF-8A035305A24E	The operation for the entity vm-2663 failed with the following message: "Customization failed."	
At line 3, position 99
get-template w2k3stdR2-template &#124; new-vm -vmhost mytestesx01.internal.dev.org -name ScriptVM01 -OSCustomizationSpec PCK_W2k3_32BIT_STD

Thoughts?</description>
		<content:encoded><![CDATA[<p>Yes, that is a bummer, when you have to deploy 30 VMs at a time with static IP addresses.</p>
<p>When I did try with a known good customization tempate and the following command line command line,<br />
get-template w2k3stdR2-template | new-vm -vmhost mytestesx01.internal.dev.org -name ScriptVM01 -OSCustomizationSpec PCK_W2k3_32BIT_STD</p>
<p>the process runs to about 95% then fails with this error:<br />
8/28/2008 3:48:01 PM	New-VM	BB572FA5-355A-4225-BBEF-8A035305A24E	The operation for the entity vm-2663 failed with the following message: &#8220;Customization failed.&#8221;<br />
At line 3, position 99<br />
get-template w2k3stdR2-template | new-vm -vmhost mytestesx01.internal.dev.org -name ScriptVM01 -OSCustomizationSpec PCK_W2k3_32BIT_STD</p>
<p>Thoughts?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Call for Script Ideas: VMware PowerShell Toolkit by halr9000</title>
		<link>http://halr9000.com/article/464#comment-6898</link>
		<dc:creator>halr9000</dc:creator>
		<pubDate>Thu, 28 Aug 2008 18:59:46 +0000</pubDate>
		<guid isPermaLink="false">http://halr9000.com/article/464#comment-6898</guid>
		<description>Right now you actually can't change the IP during a clone using the VI Toolkit.  This is a big glaring hole unfortunately.

Template is a VM that is marked as a template.  It's identical underneath the covers.  But you can do more stuff with a template with regards to VM deployment.</description>
		<content:encoded><![CDATA[<p>Right now you actually can&#8217;t change the IP during a clone using the VI Toolkit.  This is a big glaring hole unfortunately.</p>
<p>Template is a VM that is marked as a template.  It&#8217;s identical underneath the covers.  But you can do more stuff with a template with regards to VM deployment.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Call for Script Ideas: VMware PowerShell Toolkit by VMWareLearner</title>
		<link>http://halr9000.com/article/464#comment-6897</link>
		<dc:creator>VMWareLearner</dc:creator>
		<pubDate>Thu, 28 Aug 2008 18:37:48 +0000</pubDate>
		<guid isPermaLink="false">http://halr9000.com/article/464#comment-6897</guid>
		<description>How about changing the IP address during the cloning process?
What is the difference between a Template and a virtual machine?</description>
		<content:encoded><![CDATA[<p>How about changing the IP address during the cloning process?<br />
What is the difference between a Template and a virtual machine?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Exclusive: PowerShell Plus is Back in Action! by Tobias</title>
		<link>http://halr9000.com/article/595#comment-6896</link>
		<dc:creator>Tobias</dc:creator>
		<pubDate>Thu, 28 Aug 2008 15:53:50 +0000</pubDate>
		<guid isPermaLink="false">http://halr9000.com/article/595#comment-6896</guid>
		<description>Thanks for your detailed feedback, I'll look into that and work together with David and Richard to get these things sorted out quickly. 

BTW one answer to your findings is that you are probably using Windows XP/2003, which is lacking some console APIs. On these, you would have to right-click the console (which only works with QuickEdit disabled) or execute $psplus.ShowProperties(). In that dialog, you can set colors, font etc., and once you defined that, the ugly black border will be gone as well ;-). With Vista and beyond, you can do the same thing via a toolbar and even scale font size seamlessly. Here, the entire experience is much smoother. I'll brainstorm with the others how we can extend that to XP.

Regarding price, I hear you and take the discussion to the team. I am sure you can appreciate that a professional user will probably have a ROI within just a couple of hours, $149 being a rather low price tag (the Swiss Microsoft Site commented our prices as "deal of the year", clearly from an IT Pro perspective). But again, I'd love everyone to benefit from PowerShellPlus and will see what can be done.</description>
		<content:encoded><![CDATA[<p>Thanks for your detailed feedback, I&#8217;ll look into that and work together with David and Richard to get these things sorted out quickly. </p>
<p>BTW one answer to your findings is that you are probably using Windows XP/2003, which is lacking some console APIs. On these, you would have to right-click the console (which only works with QuickEdit disabled) or execute $psplus.ShowProperties(). In that dialog, you can set colors, font etc., and once you defined that, the ugly black border will be gone as well ;-). With Vista and beyond, you can do the same thing via a toolbar and even scale font size seamlessly. Here, the entire experience is much smoother. I&#8217;ll brainstorm with the others how we can extend that to XP.</p>
<p>Regarding price, I hear you and take the discussion to the team. I am sure you can appreciate that a professional user will probably have a ROI within just a couple of hours, $149 being a rather low price tag (the Swiss Microsoft Site commented our prices as &#8220;deal of the year&#8221;, clearly from an IT Pro perspective). But again, I&#8217;d love everyone to benefit from PowerShellPlus and will see what can be done.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Exclusive: PowerShell Plus is Back in Action! by halr9000</title>
		<link>http://halr9000.com/article/595#comment-6895</link>
		<dc:creator>halr9000</dc:creator>
		<pubDate>Thu, 28 Aug 2008 15:18:33 +0000</pubDate>
		<guid isPermaLink="false">http://halr9000.com/article/595#comment-6895</guid>
		<description>I wonder if it makes sense for him to do a "lite" product or release V1 for free, etc.  After all, the new one is called Professional.  :)</description>
		<content:encoded><![CDATA[<p>I wonder if it makes sense for him to do a &#8220;lite&#8221; product or release V1 for free, etc.  After all, the new one is called Professional.  <img src='http://halr9000.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Exclusive: PowerShell Plus is Back in Action! by thomas lee</title>
		<link>http://halr9000.com/article/595#comment-6894</link>
		<dc:creator>thomas lee</dc:creator>
		<pubDate>Thu, 28 Aug 2008 15:15:48 +0000</pubDate>
		<guid isPermaLink="false">http://halr9000.com/article/595#comment-6894</guid>
		<description>I spend some time commenting in email to David Fargo. My key niggles (and these really are very minor!):

1. It takes a long time to startup.
2. Quick edit NOT set by default.
3. The Learning centre pops up - over the top of the console. I'd prefer to see it pop-under or pop-to the side.
4. There is no "save" when changing Powershell options so it's not clear whether options are in fact being saved.
5. Putting options under "Extras" menu seems somewhat counter to normal windows standards - I did not find it quickly.
6.  There's no option I can find for setting console colours. I set these in my PSH profile AND the shortcut I launch PowerShell with, but with PS+ I get a non-seamless experience. I can provide a screen shot if you'd like. It's ugly imho.

And further to 6, I get a ugly black line between the main window and the pop-up windows on the right. I can provide screenshots of this.

If this is the worst I can find, then I'm thinking it's a solid product. I now use it regularly on my laptop (too busy this week to put it onto my desktops, but since I'm mainly developing with PowerShell on my laptop that's OK!). So far, the product seems solid, reliable and robust - it'll make a great addition when it's released.

Regarding price - like I said, it feels a bit expensive. At a few hundred dollars, I'd have to be doing a lot of PS work, or doing "serious" to justify it. At US$50, let me paypal you the cash now. If you see what I mean. But I suspect you'll make more going for the serious users (that don't care about the price as long as they get quality) than the occasional dabller for whom price IS an issue.
 
Keep up the great work Tobias - I'm sure you have a great winner of a product here!</description>
		<content:encoded><![CDATA[<p>I spend some time commenting in email to David Fargo. My key niggles (and these really are very minor!):</p>
<p>1. It takes a long time to startup.<br />
2. Quick edit NOT set by default.<br />
3. The Learning centre pops up - over the top of the console. I&#8217;d prefer to see it pop-under or pop-to the side.<br />
4. There is no &#8220;save&#8221; when changing Powershell options so it&#8217;s not clear whether options are in fact being saved.<br />
5. Putting options under &#8220;Extras&#8221; menu seems somewhat counter to normal windows standards - I did not find it quickly.<br />
6.  There&#8217;s no option I can find for setting console colours. I set these in my PSH profile AND the shortcut I launch PowerShell with, but with PS+ I get a non-seamless experience. I can provide a screen shot if you&#8217;d like. It&#8217;s ugly imho.</p>
<p>And further to 6, I get a ugly black line between the main window and the pop-up windows on the right. I can provide screenshots of this.</p>
<p>If this is the worst I can find, then I&#8217;m thinking it&#8217;s a solid product. I now use it regularly on my laptop (too busy this week to put it onto my desktops, but since I&#8217;m mainly developing with PowerShell on my laptop that&#8217;s OK!). So far, the product seems solid, reliable and robust - it&#8217;ll make a great addition when it&#8217;s released.</p>
<p>Regarding price - like I said, it feels a bit expensive. At a few hundred dollars, I&#8217;d have to be doing a lot of PS work, or doing &#8220;serious&#8221; to justify it. At US$50, let me paypal you the cash now. If you see what I mean. But I suspect you&#8217;ll make more going for the serious users (that don&#8217;t care about the price as long as they get quality) than the occasional dabller for whom price IS an issue.</p>
<p>Keep up the great work Tobias - I&#8217;m sure you have a great winner of a product here!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Exclusive: PowerShell Plus is Back in Action! by Tobias</title>
		<link>http://halr9000.com/article/595#comment-6893</link>
		<dc:creator>Tobias</dc:creator>
		<pubDate>Thu, 28 Aug 2008 14:13:22 +0000</pubDate>
		<guid isPermaLink="false">http://halr9000.com/article/595#comment-6893</guid>
		<description>Thomas, 

I am glad you like and use PS+! We've been working on this now for two years and had more than 100.000 downloads and a quite amazing customer feedback. 

Re "clearly beta", the answer probably is: I am happy to see that the kind of issues we still have in our beta are of similar type and severity that you can find in any of the RTM'd products, be it Sapien, PowerGUI or AdminScriptEditor (not to mention MS V2 Graphical Host), so I take this as encouragement that we are right on track for the final towards the end of Sep. ;-) If you have any specific feedback re: niggles etc, please share. We'll make sure it is taken care of.

PowerShell is a very new and quite complex technology so all vendors need some time and experience until the dust settles...

Re price: I'd love to give away the product for free, but you know what happened with PS+ V1 and our very liberal licensing? Most people used it but did not bother to pay. I learned the hard way that pricing is a gut feeling thing that only works to a certain point.

Since we want to continue our vision and provide outstanding quality and support, pricing is simple math now: take the investments necessary and pick a price that covers it. Make sure people using the product will get value fast that makes up this price in a matter of hours so everyone is feeling good. Period. During Beta, the price is $79 and will rise to $149 after that. 

Couldn't we make it free and sponsor it somehow? You know how it is: peanuts aren't *really* free, you pay them with the beer. In our case, we decided to transparently charge a moderate amount.

Cheerio, Tobias (maker of PowerShellPlus)</description>
		<content:encoded><![CDATA[<p>Thomas, </p>
<p>I am glad you like and use PS+! We&#8217;ve been working on this now for two years and had more than 100.000 downloads and a quite amazing customer feedback. </p>
<p>Re &#8220;clearly beta&#8221;, the answer probably is: I am happy to see that the kind of issues we still have in our beta are of similar type and severity that you can find in any of the RTM&#8217;d products, be it Sapien, PowerGUI or AdminScriptEditor (not to mention MS V2 Graphical Host), so I take this as encouragement that we are right on track for the final towards the end of Sep. <img src='http://halr9000.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> If you have any specific feedback re: niggles etc, please share. We&#8217;ll make sure it is taken care of.</p>
<p>PowerShell is a very new and quite complex technology so all vendors need some time and experience until the dust settles&#8230;</p>
<p>Re price: I&#8217;d love to give away the product for free, but you know what happened with PS+ V1 and our very liberal licensing? Most people used it but did not bother to pay. I learned the hard way that pricing is a gut feeling thing that only works to a certain point.</p>
<p>Since we want to continue our vision and provide outstanding quality and support, pricing is simple math now: take the investments necessary and pick a price that covers it. Make sure people using the product will get value fast that makes up this price in a matter of hours so everyone is feeling good. Period. During Beta, the price is $79 and will rise to $149 after that. </p>
<p>Couldn&#8217;t we make it free and sponsor it somehow? You know how it is: peanuts aren&#8217;t *really* free, you pay them with the beer. In our case, we decided to transparently charge a moderate amount.</p>
<p>Cheerio, Tobias (maker of PowerShellPlus)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Exclusive: PowerShell Plus is Back in Action! by halr9000</title>
		<link>http://halr9000.com/article/595#comment-6892</link>
		<dc:creator>halr9000</dc:creator>
		<pubDate>Thu, 28 Aug 2008 13:34:20 +0000</pubDate>
		<guid isPermaLink="false">http://halr9000.com/article/595#comment-6892</guid>
		<description>The UI has come a long way. Can you be more specific, Thomas?

As far as price goes, all I can say is that I use ps+ all day.  :)</description>
		<content:encoded><![CDATA[<p>The UI has come a long way. Can you be more specific, Thomas?</p>
<p>As far as price goes, all I can say is that I use ps+ all day.  <img src='http://halr9000.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Exclusive: PowerShell Plus is Back in Action! by thomas lee</title>
		<link>http://halr9000.com/article/595#comment-6891</link>
		<dc:creator>thomas lee</dc:creator>
		<pubDate>Thu, 28 Aug 2008 10:25:31 +0000</pubDate>
		<guid isPermaLink="false">http://halr9000.com/article/595#comment-6891</guid>
		<description>PS+ is a great tool although clearly still in beta. The basic product is great and i'm happy using it, althought there are a bunch of little niggles over the UI. Functionally, this is a strong product.

As to price point, I'm not sure what the right price should be. A few hundred dollars seems a bit expensive, I'd put it as US$50. What do other folks think about pricing??</description>
		<content:encoded><![CDATA[<p>PS+ is a great tool although clearly still in beta. The basic product is great and i&#8217;m happy using it, althought there are a bunch of little niggles over the UI. Functionally, this is a strong product.</p>
<p>As to price point, I&#8217;m not sure what the right price should be. A few hundred dollars seems a bit expensive, I&#8217;d put it as US$50. What do other folks think about pricing??</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on PowerShell Script: Get-Netstat by Glenn</title>
		<link>http://halr9000.com/article/599#comment-6890</link>
		<dc:creator>Glenn</dc:creator>
		<pubDate>Thu, 28 Aug 2008 01:50:35 +0000</pubDate>
		<guid isPermaLink="false">http://halr9000.com/?p=599#comment-6890</guid>
		<description>Ask and you shall receive... 

http://poshcode.org/558

~Glenn</description>
		<content:encoded><![CDATA[<p>Ask and you shall receive&#8230; </p>
<p><a href="http://poshcode.org/558" onclick="javascript:pageTracker._trackPageview('/poshcode.org');" rel="nofollow">http://poshcode.org/558</a></p>
<p>~Glenn</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on PowerShell Script: Get-Netstat by /\/\o\/\/</title>
		<link>http://halr9000.com/article/599#comment-6889</link>
		<dc:creator>/\/\o\/\/</dc:creator>
		<pubDate>Wed, 27 Aug 2008 18:47:50 +0000</pubDate>
		<guid isPermaLink="false">http://halr9000.com/?p=599#comment-6889</guid>
		<description>Oops,

http://www.codeguru.com/forum/showthread.php?p=1748321

not even a simple P/Invoke seems to do, undocumented interfaces, you're right let's just wrap-up netstat  for this hehe .
Still net NET class is handy without it

$gp.GetIcmpV4Statistics()
$gp.GetActiveTcpListeners()
$gp.GetActiveUdpListeners()

Greetings /\/\o\/\/</description>
		<content:encoded><![CDATA[<p>Oops,</p>
<p><a href="http://www.codeguru.com/forum/showthread.php?p=1748321" onclick="javascript:pageTracker._trackPageview('/www.codeguru.com');" rel="nofollow">http://www.codeguru.com/forum/showthread.php?p=1748321</a></p>
<p>not even a simple P/Invoke seems to do, undocumented interfaces, you&#8217;re right let&#8217;s just wrap-up netstat  for this hehe .<br />
Still net NET class is handy without it</p>
<p>$gp.GetIcmpV4Statistics()<br />
$gp.GetActiveTcpListeners()<br />
$gp.GetActiveUdpListeners()</p>
<p>Greetings /\/\o\/\/</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on VMware PowerShell Toolkit Tip: Moving Templates by halr9000</title>
		<link>http://halr9000.com/article/591#comment-6888</link>
		<dc:creator>halr9000</dc:creator>
		<pubDate>Wed, 27 Aug 2008 18:39:58 +0000</pubDate>
		<guid isPermaLink="false">http://halr9000.com/?p=591#comment-6888</guid>
		<description>Glad I could help :)</description>
		<content:encoded><![CDATA[<p>Glad I could help <img src='http://halr9000.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on PowerShell Script: Get-Netstat by /\/\o\/\/</title>
		<link>http://halr9000.com/article/599#comment-6887</link>
		<dc:creator>/\/\o\/\/</dc:creator>
		<pubDate>Wed, 27 Aug 2008 18:37:50 +0000</pubDate>
		<guid isPermaLink="false">http://halr9000.com/?p=599#comment-6887</guid>
		<description>the System.NET class give you objects directly, to bad it does not list the sid

$gp = [Net.NetworkInformation.IPGlobalProperties]::GetIPGlobalProperties()
$gp
$gp.GetActiveTcpConnections()
$gp.GetActiveTcpConnections()[0].localendpoint.port

more info
http://thepowershellguy.com/blogs/posh/archive/2007/03/02/hey-powershell-guy-how-can-i-change-the-first-two-octets-of-an-ip-address.aspx

did not look into getting a PID yet.

Enjoy,
Greetings /\/\o\/\/</description>
		<content:encoded><![CDATA[<p>the System.NET class give you objects directly, to bad it does not list the sid</p>
<p>$gp = [Net.NetworkInformation.IPGlobalProperties]::GetIPGlobalProperties()<br />
$gp<br />
$gp.GetActiveTcpConnections()<br />
$gp.GetActiveTcpConnections()[0].localendpoint.port</p>
<p>more info<br />
<a href="http://thepowershellguy.com/blogs/posh/archive/2007/03/02/hey-powershell-guy-how-can-i-change-the-first-two-octets-of-an-ip-address.aspx" onclick="javascript:pageTracker._trackPageview('/thepowershellguy.com');" rel="nofollow">http://thepowershellguy.com/blogs/posh/archive/2007/03/02/hey-powershell-guy-how-can-i-change-the-first-two-octets-of-an-ip-address.aspx</a></p>
<p>did not look into getting a PID yet.</p>
<p>Enjoy,<br />
Greetings /\/\o\/\/</p>
]]></content:encoded>
	</item>
</channel>
</rss>
