<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Tech.It.2.Me-&#62;{By.Anton.Perez}</title>
	<atom:link href="http://antonperez.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://antonperez.com</link>
	<description>Technical satisfaction guaranteed...</description>
	<lastBuildDate>Fri, 28 Oct 2011 23:48:29 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>PowerShell: Extracting certain lines in any file</title>
		<link>http://antonperez.com/2011/10/28/powershell-extracting-certain-lines-in-any-file/</link>
		<comments>http://antonperez.com/2011/10/28/powershell-extracting-certain-lines-in-any-file/#comments</comments>
		<pubDate>Fri, 28 Oct 2011 23:09:59 +0000</pubDate>
		<dc:creator>anton</dc:creator>
				<category><![CDATA[How-to]]></category>
		<category><![CDATA[PowerShell]]></category>

		<guid isPermaLink="false">http://antonperez.com/2011/10/28/powershell-extracting-certain-lines-in-any-file/</guid>
		<description><![CDATA[I had quite a large file that I needed to parse, and the challenge was to extract certain lines that didn’t match a certain condition.&#160; The solution . . . PowerShell, like so: select-string -path filename -notmatch &#34;criteria&#34; &#124; foreach {$_.line} &#124; out-file -filepath filename -encoding ascii That’s it!]]></description>
			<content:encoded><![CDATA[<p>I had quite a large file that I needed to parse, and the challenge was to extract certain lines that didn’t match a certain condition.&#160; The solution . . . PowerShell, like so:</p>
<p><font face="Courier New">select-string -path <em>filename</em> -notmatch &quot;<em>criteria</em>&quot; | foreach {$_.line} | out-file -filepath <em>filename</em> -encoding ascii</font></p>
<p>That’s it!</p>
]]></content:encoded>
			<wfw:commentRss>http://antonperez.com/2011/10/28/powershell-extracting-certain-lines-in-any-file/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PowerShell: Deleting entire lines in a text file based on a partial string match</title>
		<link>http://antonperez.com/2011/07/11/powershell-deleting-entire-lines-in-a-text-file-based-on-a-partial-string-match/</link>
		<comments>http://antonperez.com/2011/07/11/powershell-deleting-entire-lines-in-a-text-file-based-on-a-partial-string-match/#comments</comments>
		<pubDate>Tue, 12 Jul 2011 00:24:11 +0000</pubDate>
		<dc:creator>anton</dc:creator>
				<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[PowerShell]]></category>
		<category><![CDATA[Scripting]]></category>

		<guid isPermaLink="false">http://antonperez.com/2011/07/11/powershell-deleting-entire-lines-in-a-text-file-based-on-a-partial-string-match/</guid>
		<description><![CDATA[PS C:\workspace&#62; (gc “fileToParse.txt”) -notmatch &#34;&#60;criteria&#62;&#34; &#124; out-file &#34;resultFile.txt&#34; Note: &#60;Criteria&#62;, for example, “not&#34;.]]></description>
			<content:encoded><![CDATA[<p>PS C:\workspace&gt; (gc “fileToParse.txt”) -notmatch &quot;&lt;<em>criteria&gt;</em>&quot; | out-file    <br />&quot;resultFile.txt&quot;</p>
<p>Note: &lt;Criteria&gt;, for example, “not&quot;.</p>
]]></content:encoded>
			<wfw:commentRss>http://antonperez.com/2011/07/11/powershell-deleting-entire-lines-in-a-text-file-based-on-a-partial-string-match/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PowerShell: Rename file to lowercase</title>
		<link>http://antonperez.com/2011/06/15/powershell-rename-file-to-lowercase/</link>
		<comments>http://antonperez.com/2011/06/15/powershell-rename-file-to-lowercase/#comments</comments>
		<pubDate>Wed, 15 Jun 2011 23:14:57 +0000</pubDate>
		<dc:creator>anton</dc:creator>
				<category><![CDATA[PowerShell]]></category>
		<category><![CDATA[Scripting]]></category>

		<guid isPermaLink="false">http://antonperez.com/2011/06/15/powershell-rename-file-to-lowercase/</guid>
		<description><![CDATA[1. Open PowerShell 2. CD into directory to work on 3. Execute the following command: get-childitem * -recurse &#124; rename-item -newname { $_.name.ToLower() }]]></description>
			<content:encoded><![CDATA[<p>1. Open PowerShell</p>
<p>2. CD into directory to work on</p>
<p>3. Execute the following command:</p>
<p>get-childitem * -recurse | rename-item -newname { $_.name.ToLower() }</p>
]]></content:encoded>
			<wfw:commentRss>http://antonperez.com/2011/06/15/powershell-rename-file-to-lowercase/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PowerShell: Rename file&#8217;s file extension</title>
		<link>http://antonperez.com/2011/06/15/powershell-rename-files-to-lowercase/</link>
		<comments>http://antonperez.com/2011/06/15/powershell-rename-files-to-lowercase/#comments</comments>
		<pubDate>Wed, 15 Jun 2011 22:58:38 +0000</pubDate>
		<dc:creator>anton</dc:creator>
				<category><![CDATA[PowerShell]]></category>
		<category><![CDATA[Scripting]]></category>

		<guid isPermaLink="false">http://antonperez.com/2011/06/15/powershell-rename-files-to-lowercase/</guid>
		<description><![CDATA[1. Open PowerShell 2. CD into directory to work on 3. Execute the following command: get-childitem * -recurse &#124; rename-item -newname { $_.name -replace &#34;.txt&#34;,&#34;.bcp&#34; }]]></description>
			<content:encoded><![CDATA[<p>1. Open PowerShell</p>
<p>2. CD into directory to work on</p>
<p>3. Execute the following command:</p>
<p>get-childitem * -recurse | rename-item -newname { $_.name -replace &quot;.txt&quot;,&quot;.bcp&quot; }</p>
]]></content:encoded>
			<wfw:commentRss>http://antonperez.com/2011/06/15/powershell-rename-files-to-lowercase/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cut-and-paste not working via RDP</title>
		<link>http://antonperez.com/2011/04/14/cut-and-paste-not-working-via-rdp/</link>
		<comments>http://antonperez.com/2011/04/14/cut-and-paste-not-working-via-rdp/#comments</comments>
		<pubDate>Thu, 14 Apr 2011 20:10:38 +0000</pubDate>
		<dc:creator>anton</dc:creator>
				<category><![CDATA[How-to]]></category>
		<category><![CDATA[Microsoft]]></category>

		<guid isPermaLink="false">http://antonperez.com/2011/04/14/cut-and-paste-not-working-via-rdp/</guid>
		<description><![CDATA[Cut-and-paste wasn’t working from me between my RDP session to an XP box from my Windows 7 box.&#160; Apparently, the problem was rdpclip.exe wasn’t running. So, if you come across the same issue, check for that process and turn it on if necessary via Run &#62; type rdpclip.]]></description>
			<content:encoded><![CDATA[<p>Cut-and-paste wasn’t working from me between my RDP session to an XP box from my Windows 7 box.&#160; Apparently, the problem was rdpclip.exe wasn’t running. So, if you come across the same issue, check for that process and turn it on if necessary via <em>Run </em>&gt; type <em>rdpclip</em>.</p>
]]></content:encoded>
			<wfw:commentRss>http://antonperez.com/2011/04/14/cut-and-paste-not-working-via-rdp/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

