<?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"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: On PowerShell</title>
	<atom:link href="http://www.jeffongames.com/2007/08/on-powershell/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.jeffongames.com/2007/08/on-powershell/</link>
	<description>This is Jeff.  This is Jeff On Games.</description>
	<lastBuildDate>Tue, 31 Jan 2012 21:30:53 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Jeff</title>
		<link>http://www.jeffongames.com/2007/08/on-powershell/comment-page-1/#comment-32171</link>
		<dc:creator>Jeff</dc:creator>
		<pubDate>Thu, 22 Jan 2009 21:56:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.jeffongames.com/2007/08/on-powershell/#comment-32171</guid>
		<description>Hey Shane,

I might agree if you hadn&#039;t missed the key concept that makes Powershell... well... powerful, which is piping of objects over text.  This may be complicated, but is actually very second nature once you get the hang of it.</description>
		<content:encoded><![CDATA[<p>Hey Shane,</p>
<p>I might agree if you hadn&#8217;t missed the key concept that makes Powershell&#8230; well&#8230; powerful, which is piping of objects over text.  This may be complicated, but is actually very second nature once you get the hang of it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Shane</title>
		<link>http://www.jeffongames.com/2007/08/on-powershell/comment-page-1/#comment-32170</link>
		<dc:creator>Shane</dc:creator>
		<pubDate>Thu, 22 Jan 2009 21:20:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.jeffongames.com/2007/08/on-powershell/#comment-32170</guid>
		<description>Wow!  It sounds a lot like UNIX/Linux!
It&#039;s amazing how Microsoft continues to recreate old things and people act as if it is the most novel idea ever invented.  

And I&#039;m not a Linux troll. I am a Windows user 90% of the time.

I am trying to learn it and to me it seems terribly over complicated</description>
		<content:encoded><![CDATA[<p>Wow!  It sounds a lot like UNIX/Linux!<br />
It&#8217;s amazing how Microsoft continues to recreate old things and people act as if it is the most novel idea ever invented.  </p>
<p>And I&#8217;m not a Linux troll. I am a Windows user 90% of the time.</p>
<p>I am trying to learn it and to me it seems terribly over complicated</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jeff</title>
		<link>http://www.jeffongames.com/2007/08/on-powershell/comment-page-1/#comment-11773</link>
		<dc:creator>Jeff</dc:creator>
		<pubDate>Thu, 30 Aug 2007 18:30:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.jeffongames.com/2007/08/on-powershell/#comment-11773</guid>
		<description>It looks like I could use -match if I cared about case, although I&#039;m sure there&#039;s an easy regex for a case-insensitive match.  Thanks for the tips!

I&#039;d not seen the free powershell book, but I have it now.  Maybe I&#039;ll take it over to a kinkos (or something similar) to have as reading material for the trip to Austin next week.

Thanks again!</description>
		<content:encoded><![CDATA[<p>It looks like I could use -match if I cared about case, although I&#8217;m sure there&#8217;s an easy regex for a case-insensitive match.  Thanks for the tips!</p>
<p>I&#8217;d not seen the free powershell book, but I have it now.  Maybe I&#8217;ll take it over to a kinkos (or something similar) to have as reading material for the trip to Austin next week.</p>
<p>Thanks again!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jeffrey Snover</title>
		<link>http://www.jeffongames.com/2007/08/on-powershell/comment-page-1/#comment-11765</link>
		<dc:creator>Jeffrey Snover</dc:creator>
		<pubDate>Thu, 30 Aug 2007 16:35:07 +0000</pubDate>
		<guid isPermaLink="false">http://www.jeffongames.com/2007/08/on-powershell/#comment-11765</guid>
		<description>$destDir = [System.IO.Path]::GetDirectoryName($dest)
Consider:
   $destDir = Split-Path $dest


   if(!$destDir.ToLower().Contains(&quot;test&quot;))

Consider:
  if ($destDir -match &quot;test&quot;)

Have you checked out the free Powershell book:  http://blogs.msdn.com/powershell/archive/2007/05/11/free-powershell-book.aspx

I hope you enjoy PowerShell and don&#039;t hesitateto let us know how we can improve it.

Cheers!

Jeffrey Snover [MSFT]
Windows Management Partner Architect
Visit the Windows PowerShell Team blog at:    http://blogs.msdn.com/PowerShell
Visit the Windows PowerShell ScriptCenter at:  http://www.microsoft.com/technet/scriptcenter/hubs/msh.mspx</description>
		<content:encoded><![CDATA[<p>$destDir = [System.IO.Path]::GetDirectoryName($dest)<br />
Consider:<br />
   $destDir = Split-Path $dest</p>
<p>   if(!$destDir.ToLower().Contains(&#8220;test&#8221;))</p>
<p>Consider:<br />
  if ($destDir -match &#8220;test&#8221;)</p>
<p>Have you checked out the free Powershell book:  <a href="http://blogs.msdn.com/powershell/archive/2007/05/11/free-powershell-book.aspx" rel="nofollow">http://blogs.msdn.com/powershell/archive/2007/05/11/free-powershell-book.aspx</a></p>
<p>I hope you enjoy PowerShell and don&#8217;t hesitateto let us know how we can improve it.</p>
<p>Cheers!</p>
<p>Jeffrey Snover [MSFT]<br />
Windows Management Partner Architect<br />
Visit the Windows PowerShell Team blog at:    <a href="http://blogs.msdn.com/PowerShell" rel="nofollow">http://blogs.msdn.com/PowerShell</a><br />
Visit the Windows PowerShell ScriptCenter at:  <a href="http://www.microsoft.com/technet/scriptcenter/hubs/msh.mspx" rel="nofollow">http://www.microsoft.com/technet/scriptcenter/hubs/msh.mspx</a></p>
]]></content:encoded>
	</item>
</channel>
</rss>

