<?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} &#187; How-to</title>
	<atom:link href="http://antonperez.com/category/how-to/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>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>
		<item>
		<title>Using Visual SourceSafe 2005 with Visual Studio 2010</title>
		<link>http://antonperez.com/2011/03/18/using-visual-sourcesafe-2005-with-visual-studio-2010/</link>
		<comments>http://antonperez.com/2011/03/18/using-visual-sourcesafe-2005-with-visual-studio-2010/#comments</comments>
		<pubDate>Fri, 18 Mar 2011 21:07:52 +0000</pubDate>
		<dc:creator>anton</dc:creator>
				<category><![CDATA[General Development]]></category>
		<category><![CDATA[How-to]]></category>
		<category><![CDATA[Microsoft]]></category>

		<guid isPermaLink="false">http://antonperez.com/2011/03/18/using-visual-sourcesafe-2005-with-visual-studio-2010/</guid>
		<description><![CDATA[You may notice that when you attempt to add your solution to a source control in Visual Studio 2010, that it only shows a TFS server as a choice. Don’t be alarmed, however, just: 1. Go to Tools &#62; Options. 2. Click Show all settings if not checked, then go to Source Control. 3. Go [...]]]></description>
			<content:encoded><![CDATA[<p>You may notice that when you attempt to add your solution to a source control in Visual Studio 2010, that it only shows a TFS server as a choice. Don’t be alarmed, however, just:</p>
<p>1. Go to <strong>Tools</strong> &gt; <strong>Options</strong>.</p>
<p>2. Click <strong>Show all settings</strong> if not checked, then go to <strong>Source Control</strong>.</p>
<p>3. Go to <strong>Plug-in Selection</strong>, then change the dropdown to <strong>Microsoft Visual SourceSafe</strong>.</p>
<p>4. That’s it!</p>
<p>Happy Trailing!</p>
]]></content:encoded>
			<wfw:commentRss>http://antonperez.com/2011/03/18/using-visual-sourcesafe-2005-with-visual-studio-2010/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How-to: Bypass a WSUS server</title>
		<link>http://antonperez.com/2011/03/17/how-to-bypass-a-wsus-server/</link>
		<comments>http://antonperez.com/2011/03/17/how-to-bypass-a-wsus-server/#comments</comments>
		<pubDate>Fri, 18 Mar 2011 01:10:47 +0000</pubDate>
		<dc:creator>anton</dc:creator>
				<category><![CDATA[How-to]]></category>
		<category><![CDATA[Microsoft]]></category>

		<guid isPermaLink="false">http://antonperez.com/2011/03/17/how-to-bypass-a-wsus-server/</guid>
		<description><![CDATA[As long as you have administrative access on your work computer, all you have to do is change the following key to ‘0’ (from ‘1’): UseWUServer under the following location in the registry: HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU Hope this helps someone out there.]]></description>
			<content:encoded><![CDATA[<p>As long as you have administrative access on your work computer, all you have to do is change the following key to ‘0’ (from ‘1’): <strong>UseWUServer </strong>under the following location in the registry:</p>
<p><strong>HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU</strong></p>
<p>Hope this helps someone out there.</p>
]]></content:encoded>
			<wfw:commentRss>http://antonperez.com/2011/03/17/how-to-bypass-a-wsus-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to enable or disable Quick Launch in Windows 7</title>
		<link>http://antonperez.com/2011/03/17/how-to-enable-or-disable-quick-launch-in-windows-7/</link>
		<comments>http://antonperez.com/2011/03/17/how-to-enable-or-disable-quick-launch-in-windows-7/#comments</comments>
		<pubDate>Thu, 17 Mar 2011 23:18:57 +0000</pubDate>
		<dc:creator>anton</dc:creator>
				<category><![CDATA[How-to]]></category>
		<category><![CDATA[Microsoft]]></category>

		<guid isPermaLink="false">http://antonperez.com/2011/03/17/how-to-enable-or-disable-quick-launch-in-windows-7/</guid>
		<description><![CDATA[Just adding this for archival purposes… http://www.sevenforums.com/tutorials/888-quick-launch-enable-disable.html]]></description>
			<content:encoded><![CDATA[<p>Just adding this for archival purposes…</p>
<p><a href="http://www.sevenforums.com/tutorials/888-quick-launch-enable-disable.html">http://www.sevenforums.com/tutorials/888-quick-launch-enable-disable.html</a></p>
]]></content:encoded>
			<wfw:commentRss>http://antonperez.com/2011/03/17/how-to-enable-or-disable-quick-launch-in-windows-7/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

