<?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: 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>
	<pubDate>Fri, 05 Sep 2008 17:32:12 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.1</generator>
		<item>
		<title>By: Jeff</title>
		<link>http://www.jeffongames.com/2007/08/on-powershell/#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'm sure there's an easy regex for a case-insensitive match.  Thanks for the tips!

I'd not seen the free powershell book, but I have it now.  Maybe I'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-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("test"))

Consider:
  if ($destDir -match "test")

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'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(&#8221;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>
