<?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>RodeoFive</title>
	<atom:link href="http://www.rodeofive.com/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.rodeofive.com/blog</link>
	<description>Tracks useful blog posts that I've found</description>
	<lastBuildDate>Wed, 26 Mar 2008 20:15:35 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>A simple formatDate function for JavaScript</title>
		<link>http://www.rodeofive.com/blog/2008/03/26/a-simple-formatdate-function-for-javascript/</link>
		<comments>http://www.rodeofive.com/blog/2008/03/26/a-simple-formatdate-function-for-javascript/#comments</comments>
		<pubDate>Wed, 26 Mar 2008 20:15:35 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[javascript]]></category>

		<guid isPermaLink="false">http://www.rodeofive.com/blog/2008/03/26/a-simple-formatdate-function-for-javascript/</guid>
		<description><![CDATA[Written by the Great Rick Strahl at: http://west-wind.com/weblog/posts/282495.aspx
A simple formatDate function for JavaScript
One thing in JavaScript that&#8217;s really lacking is date formatting. If you want to display a date in JavaScript there aren&#8217;t a whole lot of options available especially if you want to display a date as numeric notation (ie. 10/31/2007 for example). I [...]]]></description>
			<content:encoded><![CDATA[<p>Written by the Great Rick Strahl at: <a href="http://west-wind.com/weblog/posts/282495.aspx">http://west-wind.com/weblog/posts/282495.aspx</a></p>
<p><strong>A simple formatDate function for JavaScript</strong></p>
<p>One thing in JavaScript that&#8217;s really lacking is date formatting. If you want to display a date in JavaScript there aren&#8217;t a whole lot of options available especially if you want to display a date as numeric notation (ie. 10/31/2007 for example). I decided that I need at least some basic date formatting functionality in my apps, so I created a basic date formatting function. While I was at it I had to create a few helpers along the way which I&#8217;ll also show below.</p>
<p>This is one thing where the Microsoft ASP.NET AJAX client library actually excels &#8211; it has a whole complement of type formatting functions similar to .NET code, but since I&#8217;m not using the library I needed to roll my own. I took a brief look to see what the MS client libs are doing but the amount of code involved for formatting is huge and scattered all over the place. To be expected though given in the completeness of the support which is much more than my simple needs. (FWIW, it&#8217;s really interesting to see the sheer amount of code that runs in the MS AJAX libraries!).</p>
<p>I also searched around for a other JavaScript implementations and I dug up a few but the problem with many of them is that the code gets rather lengthy quickly as most libraries  support too many features including string based date representations, which then requires localization etc.</p>
<p>My main goal is to provide only basic date formatting for numeric date display. Things like 12/01/1966 and 2005-12-31 19:00:31 and 12-07 or 12:01pm for example. That&#8217;s only a fraction of the date formatting we&#8217;re used to in .NET, but really how many different date formats do you ever work with anyway?</p>
<p>In any case here&#8217;s a formatDate extension for the Date prototype:</p>
<p>Date.prototype.formatDate = function(format)</p>
<p>{</p>
<p>var date = this;</p>
<p>if (!format)</p>
<p>format=&#8221;MM/dd/yyyy&#8221;;</p>
<p>var month = date.getMonth() + 1;</p>
<p>var year = date.getFullYear();</p>
<p>format = format.replace(&#8221;MM&#8221;,month.toString().padL(2,&#8221;0&#8243;));</p>
<p>if (format.indexOf(&#8221;yyyy&#8221;) &gt; -1)</p>
<p>format = format.replace(&#8221;yyyy&#8221;,year.toString());</p>
<p>else if (format.indexOf(&#8221;yy&#8221;) &gt; -1)</p>
<p>format = format.replace(&#8221;yy&#8221;,year.toString().substr(2,2));</p>
<p>format = format.replace(&#8221;dd&#8221;,date.getDate().toString().padL(2,&#8221;0&#8243;));</p>
<p>var hours = date.getHours();</p>
<p>if (format.indexOf(&#8221;t&#8221;) &gt; -1)</p>
<p>{</p>
<p>if (hours &gt; 11)</p>
<p>format = format.replace(&#8221;t&#8221;,&#8221;pm&#8221;)</p>
<p>else</p>
<p>format = format.replace(&#8221;t&#8221;,&#8221;am&#8221;)</p>
<p>}</p>
<p>if (format.indexOf(&#8221;HH&#8221;) &gt; -1)</p>
<p>format = format.replace(&#8221;HH&#8221;,hours.toString().padL(2,&#8221;0&#8243;));</p>
<p>if (format.indexOf(&#8221;hh&#8221;) &gt; -1) {</p>
<p>if (hours &gt; 12) hours &#8211; 12;</p>
<p>if (hours == 0) hours = 12;</p>
<p>format = format.replace(&#8221;hh&#8221;,hours.toString().padL(2,&#8221;0&#8243;));</p>
<p>}</p>
<p>if (format.indexOf(&#8221;mm&#8221;) &gt; -1)</p>
<p>format = format.replace(&#8221;mm&#8221;,date.getMinutes().toString().padL(2,&#8221;0&#8243;));</p>
<p>if (format.indexOf(&#8221;ss&#8221;) &gt; -1)</p>
<p>format = format.replace(&#8221;ss&#8221;,date.getSeconds().toString().padL(2,&#8221;0&#8243;));</p>
<p>return format;</p>
<p>}</p>
<p>With this you can format dates like this:</p>
<p>var date = new Date();</p>
<p>var cr = &#8220;\n&#8221;;</p>
<p>var str = date.formatDate(&#8221;yyyy-MM-dd HH:mm&#8221;) + cr +</p>
<p>date.formatDate(&#8221;MM/dd/yyyy hh:mm t&#8221;) + cr +</p>
<p>date.formatDate(&#8221;MM-yyyy hh:mmt&#8221;) ;</p>
<p>alert(str);</p>
<p>The date formatting isn&#8217;t terribly flexible so months, days, hours, minutes and seconds can only be represented in 2 digit format, but again that&#8217;s the most common way to do it anyway around the world.</p>
<p>The code above depends on a few helper functions that String.prototype.padL and String.prototype.padR and String.repeat:</p>
<p>String.repeat = function(chr,count)</p>
<p>{</p>
<p>var str = &#8220;&#8221;;</p>
<p>for(var x=0;x<count;x++) +="chr};"></count;x++)></p>
<p>return str;</p>
<p>}</p>
<p>String.prototype.padL = function(width,pad)</p>
<p>{</p>
<p>if (!width ||width&lt;1)</p>
<p>return this;</p>
<p>if (!pad) pad=&#8221; &#8220;;</p>
<p>var length = width &#8211; this.length</p>
<p>if (length &lt; 1) return this.substr(0,width);</p>
<p>return (String.repeat(pad,length) + this).substr(0,width);</p>
<p>}</p>
<p>String.prototype.padR = function(width,pad)</p>
<p>{</p>
<p>if (!width || width&lt;1)</p>
<p>return this;</p>
<p>if (!pad) pad=&#8221; &#8220;;</p>
<p>var length = width &#8211; this.length</p>
<p>if (length &lt; 1) this.substr(0,width);</p>
<p>return (this + String.repeat(pad,length)).substr(0,width);</p>
<p>}</p>
<p>The static String.repeat repeats a given character or string n number of times, which is required for padding values. .padL and padR, pad a string left and right and also trim a string if the width is exceeded. This is useful in many situations for string trimming and in the date formatting for right filling numbers with 0&#8217;s (ie. 2 turns into 02).</p>
<p>While I was at it I also ran into a very basic string.format implemementation which was just too easy to pass up. Again, not a full implementation like in .NET in that it only supports string replacement without format specifiers, but still highly useful:</p>
<p>String.format = function(frmt,args)</p>
<p>{</p>
<p>for(var x=0; x<arguments.length;></arguments.length;></p>
<p>{</p>
<p>frmt = frmt.replace(&#8221;{&#8221; + x + &#8220;}&#8221;,arguments[x+1]);</p>
<p>}</p>
<p>return frmt;</p>
<p>}</p>
<p>With it you can turn the previous data example to:</p>
<p>var date = new Date();</p>
<p>var cr = &#8220;\n&#8221;;</p>
<p>alert(String.format(&#8221;Date 1: {0}\nDate 2:{1}\nDate3: {2}&#8221;,</p>
<p>date.formatDate(&#8221;yyyy-MM-dd HH:mm&#8221;),</p>
<p>date.formatDate(&#8221;MM/dd/yyyy hh:mm t&#8221;),</p>
<p>date.formatDate(&#8221;MM-yyyy hh:mmt&#8221;) )</p>
<p>);</p>
<p>Even this very basic implementation can save a fair bit of string concatenation code in many cases.</p>
<p>None of this is rocket science of course, but it&#8217;s nice to have a few small and lean functions that provide basic utility functionality to your JavaScript code. Basic date formatting especially is something I&#8217;ve often cursed and this will go a long way to simplifying matters.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.rodeofive.com/blog/2008/03/26/a-simple-formatdate-function-for-javascript/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Where&#8217;s my .NET 3.5 (on IIS), Dude?</title>
		<link>http://www.rodeofive.com/blog/2008/03/26/wheres-my-net-35-on-iis-dude/</link>
		<comments>http://www.rodeofive.com/blog/2008/03/26/wheres-my-net-35-on-iis-dude/#comments</comments>
		<pubDate>Wed, 26 Mar 2008 19:55:41 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[asp.net]]></category>

		<guid isPermaLink="false">http://www.rodeofive.com/blog/2008/03/26/wheres-my-net-35-on-iis-dude/</guid>
		<description><![CDATA[How .Net 3.5 runs on the .Net 2.0 compiler. Written by Rick Strahl at http://west-wind.com/WebLog/ShowPost.aspx?id=289139
]]></description>
			<content:encoded><![CDATA[<p>How .Net 3.5 runs on the .Net 2.0 compiler. Written by Rick Strahl at <a href="http://west-wind.com/WebLog/ShowPost.aspx?id=289139">http://west-wind.com/WebLog/ShowPost.aspx?id=289139</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.rodeofive.com/blog/2008/03/26/wheres-my-net-35-on-iis-dude/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>String Formatting in C#</title>
		<link>http://www.rodeofive.com/blog/2008/02/18/string-formatting-in-c/</link>
		<comments>http://www.rodeofive.com/blog/2008/02/18/string-formatting-in-c/#comments</comments>
		<pubDate>Mon, 18 Feb 2008 10:27:07 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[c#]]></category>

		<guid isPermaLink="false">http://www.rodeofive.com/blog/2008/02/18/string-formatting-in-c/</guid>
		<description><![CDATA[String Formatting in C#
Resource on formatting strings in =
C#:

http://blog.stevex.net/index.php/string-formatting-in-csha=
rp/

]]></description>
			<content:encoded><![CDATA[<p>String Formatting in C#</p>
<p><P><FONT SIZE="3D2">Resource on formatting strings in =<br />
C#:</FONT><br />
</P></p>
<p><P><FONT SIZE="3D2">http://blog.stevex.net/index.php/string-formatting-in-csha=<br />
rp/</FONT></U><br />
</P></p>
]]></content:encoded>
			<wfw:commentRss>http://www.rodeofive.com/blog/2008/02/18/string-formatting-in-c/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Be a Customer Service Ninja</title>
		<link>http://www.rodeofive.com/blog/2008/02/05/be-a-customer-service-ninja/</link>
		<comments>http://www.rodeofive.com/blog/2008/02/05/be-a-customer-service-ninja/#comments</comments>
		<pubDate>Wed, 06 Feb 2008 04:34:54 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Financial]]></category>

		<guid isPermaLink="false">http://www.rodeofive.com/blog/2008/02/05/be-a-customer-service-ninja/</guid>
		<description><![CDATA[From www.consumerist.com
Be a Customer Service Ninja
Inspired to by Mike D&#8217;s Vonage story, Austin writes in a hot tip for all of looking to pole vault low-level CSR and reach the Valhalla of customer service.
&#8220;Most all large companies have some sort of executive customer service staff, made up of individuals who have the power to cut [...]]]></description>
			<content:encoded><![CDATA[<p>From www.consumerist.com<br />
<a href="http://consumerist.com/consumer/howto/be-a-customer-service-ninja-177811.php">Be a Customer Service Ninja</a></p>
<p>Inspired to by Mike D&#8217;s Vonage story, Austin writes in a hot tip for all of looking to pole vault low-level CSR and reach the Valhalla of customer service.</p>
<p>&#8220;Most all large companies have some sort of executive customer service staff, made up of individuals who have the power to cut through all sorts of red tape,&#8221; he writes. &#8220;The key is knowing how to access these wonderful people who can make things right when everything else has gone wrong.&#8221;</p>
<p>      • For public companies, put the stock ticker symbol in Google Finance and pull up the profile page. The corporate office should be listed under Company Facts.<br />
      • Call the corporate office.<br />
      • Ask for a transfer to the office of the CEO.<br />
      • You will likely get an exec. assistant but that&#8217;s good. Voice mail is ok, too.<br />
      • Give succinct summary, including identifying details like order numbers and confirmation numbers.<br />
      • Remain nice.</p>
<p>&#8220;Within a day, you should get the phone call equivalent to the holy grail&#8211;a call back by someone on the executive service team.&#8221;</p>
<p>Using this method, Austin says he got Verizon to do in three days what it hadn&#8217;t in three months: install his DSL.</p>
<p>His full letter, after the jump&#8230;</p>
<p>Austin writes:</p>
<p>      &#8220;In his email about Vonage, Mike D. actually mentions a very useful entity for those of us who do battle with various companies that attempt to screw us over. Most all large companies have some sort of executive customer service staff, made up of individuals who have the power to cut through all sorts of red tape. The key is knowing how to access these wonderful people who can make things right when everything else has gone wrong.</p>
<p>      I find the easiest way to get your issue heard is to call the corporate offices and ask to be transferred to the office of the CEO, the assistant to the CEO, or some similar entity (reference the executive by name if you want to sound like you really know what you&#8217;re doing). To find the corporate phone number, a little basic sleuthing in Google is necessary, since the normal customer service number will likely either not know the phone number or not be willing to give it out. For publicly traded companies, just plug the ticker symbol into Google and pull up the Google Finance profile page&#8211;the phone number will usually be listed under &#8220;Company Facts.&#8221; Even if the company is not publicly traded, it usually isn&#8217;t difficult to find the phone number using Google&#8211;it may even be listed in some obscure corner of the company&#8217;s web site. Alternatively, you can also attempt to find the email address of the CEO or other executive, but I find that calling is often faster, because that makes them realize that you are so upset about something that you took the effort to find out who to call.</p>
<p>      The operator will likely transfer you to an executive assistant, but this is exactly what we want. Sometimes it will be voice mail, but occasionally you&#8217;ll get a real live person. Either way, remember that you are dealing with busy people, so don&#8217;t bother rambling on about your problem, but rather try to give a succinct summary, including any identifying details that may be helpful (order numbers, confirmation numbers, etc.). As with many other things in life, remaining civil and calm will do wonders, particularly since all you need to do is get your foot in the door.</p>
<p>      Within a day, you should get the phone call equivalent to the holy grail&#8211;a call back by someone on the executive service team. At this point, they may or may not have been able to access the complete details of what has already transpired, but now is a good time to fill them in. This person will be the one who will work with you until your problem is resolved, so if they don&#8217;t immediately offer it, be sure to get their phone number so you can contact them again should any other problems come up.</p>
<p>      On a personal note, just a couple of months ago I had to make use of this strategy when Verizon decided that the DSL line I had ordered for my new apartment was clearly something I didn&#8217;t want, and customer service kept pushing back the scheduled installation date until it was over three months from when my lease started. Heck, once when I was on the phone with a normal customer service supervisor trying to see what was holding up my order, he rolled back my installation date by two weeks on the spot, but couldn&#8217;t give a reason why he needed to do so! At that point, I was so frustrated that I found the corporate switchboard phone number for Verizon, did exactly what I describe above, and am happy to say that within two and a half days I had a fully functioning DSL line in my new apartments, something that probably would have not happened for at least a month or two had I not contacted the CEO&#8217;s office directly.</p>
<p>      I hope this tip proves helpful to everyone out there who may run into a brick wall known affectionately as customer service.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.rodeofive.com/blog/2008/02/05/be-a-customer-service-ninja/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Allow RDP to Work Through Kaspersky Firewall</title>
		<link>http://www.rodeofive.com/blog/2008/01/23/allow-rdp-to-work-through-kaspersky-firewall/</link>
		<comments>http://www.rodeofive.com/blog/2008/01/23/allow-rdp-to-work-through-kaspersky-firewall/#comments</comments>
		<pubDate>Wed, 23 Jan 2008 18:15:46 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[c#]]></category>

		<guid isPermaLink="false">http://www.rodeofive.com/blog/2008/01/23/allow-rdp-to-work-through-kaspersky-firewall/</guid>
		<description><![CDATA[Allow RDP to Work Through Kaspersky Firewall
Found this post on the Kaspersky Forums:

What you want to do is allow access to terminal =
server from anywhere. That&#8217;s :
protocol TCP. Source : anywhere / generic port. To destination : =
localhost on
port 3389.

To do that, edit rules for svchost.exe and add a new one with :
Allow inbound TCP [...]]]></description>
			<content:encoded><![CDATA[<p>Allow RDP to Work Through Kaspersky Firewall</p>
<p><P><FONT>Found this post on the Kaspersky Forums:</FONT><br />
<BR></p>
<p><BR><FONT>What you want to do is allow access to terminal =<br />
server from anywhere. That&#8217;s :<BR><br />
protocol TCP. Source : anywhere / generic port. To destination : =<br />
localhost on<BR><br />
port 3389.<BR><br />
<BR><br />
To do that, edit rules for svchost.exe and add a new one with :<BR><br />
Allow inbound TCP connection where local port : 3389<BR><br />
</FONT><br />
</P></p>
]]></content:encoded>
			<wfw:commentRss>http://www.rodeofive.com/blog/2008/01/23/allow-rdp-to-work-through-kaspersky-firewall/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>156 Useful Run Commands</title>
		<link>http://www.rodeofive.com/blog/2008/01/14/156-useful-run-commands/</link>
		<comments>http://www.rodeofive.com/blog/2008/01/14/156-useful-run-commands/#comments</comments>
		<pubDate>Mon, 14 Jan 2008 22:55:17 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[XP Tips]]></category>

		<guid isPermaLink="false">http://www.rodeofive.com/blog/2008/01/14/156-useful-run-commands/</guid>
		<description><![CDATA[Good post from fixmyxp.com containing a list of Windows XP run commands: 156 Useful Run CommandsA lot of useful tips follow in the comments section.


To Access….
Run Command


Accessibility Controls
access.cpl


Accessibility Wizard
accwiz


Add Hardware Wizard
hdwwiz.cpl


Add/Remove Programs
appwiz.cpl


Administrative Tools
control admintools


Adobe Acrobat (if installed)
acrobat


Adobe Designer (if installed)
acrodist


Adobe Distiller (if installed)
acrodist


Adobe ImageReady (if installed)
imageready


Adobe Photoshop (if installed)
photoshop


Automatic Updates
wuaucpl.cpl


Bluetooth Transfer Wizard
fsquirt


Calculator
calc


Certificate Manager
certmgr.msc


Character Map
charmap


Check Disk [...]]]></description>
			<content:encoded><![CDATA[<p>Good post from <a href="http://www.fixmyxp.com">fixmyxp.com</a> containing a list of Windows XP run commands: <a href="http://www.fixmyxp.com/content/view/20/42">156 Useful Run Commands</a>A lot of useful tips follow in the comments section.</p>
<table style="border: 1px solid #cccccc; padding: 3px 2px; width: 670px; margin-top: 15px; font-family: tahoma; font-size: 11px; border-collapse: collapse">
<tr>
<td style="width: 414px; height: 29px" align="center" bgcolor="#f2f2f2"><font color="#000000" face="Verdana" size="4">To Access….</font></td>
<td style="width: 230px; height: 29px" align="center" bgcolor="#f2f2f2"><font color="#000000" face="Verdana" size="4">Run Command</font></td>
</tr>
<tr>
<td style="border-bottom: 1px solid #cccccc; width: 414px; height: 20px; padding-left: 5px">Accessibility Controls</td>
<td style="border-bottom: 1px solid #cccccc; width: 230px; height: 20px; padding-left: 5px">access.cpl</td>
</tr>
<tr>
<td style="border-bottom: 1px solid #cccccc; width: 414px; height: 20px; background-color: #ffff99; padding-left: 5px">Accessibility Wizard</td>
<td style="border-bottom: 1px solid #cccccc; width: 230px; height: 20px; background-color: #ffff99; padding-left: 5px">accwiz</td>
</tr>
<tr>
<td style="border-bottom: 1px solid #cccccc; width: 414px; padding-left: 5px">Add Hardware Wizard</td>
<td style="border-bottom: 1px solid #cccccc; width: 230px; padding-left: 5px">hdwwiz.cpl</td>
</tr>
<tr>
<td style="border-bottom: 1px solid #cccccc; width: 414px; padding-left: 5px">Add/Remove Programs</td>
<td style="border-bottom: 1px solid #cccccc; width: 230px; padding-left: 5px">appwiz.cpl</td>
</tr>
<tr>
<td style="border-bottom: 1px solid #cccccc; width: 414px; padding-left: 5px">Administrative Tools</td>
<td style="border-bottom: 1px solid #cccccc; width: 230px; padding-left: 5px">control admintools</td>
</tr>
<tr>
<td style="border-bottom: 1px solid #cccccc; width: 414px; height: 20px; background-color: #ffff99; padding-left: 5px">Adobe Acrobat (if installed)</td>
<td style="border-bottom: 1px solid #cccccc; width: 230px; height: 20px; background-color: #ffff99; padding-left: 5px">acrobat</td>
</tr>
<tr>
<td style="border-bottom: 1px solid #cccccc; width: 414px; height: 20px; background-color: #ffff99; padding-left: 5px">Adobe Designer (if installed)</td>
<td style="border-bottom: 1px solid #cccccc; width: 230px; height: 20px; background-color: #ffff99; padding-left: 5px">acrodist</td>
</tr>
<tr>
<td style="border-bottom: 1px solid #cccccc; width: 414px; height: 20px; background-color: #ffff99; padding-left: 5px">Adobe Distiller (if installed)</td>
<td style="border-bottom: 1px solid #cccccc; width: 230px; height: 20px; background-color: #ffff99; padding-left: 5px">acrodist</td>
</tr>
<tr>
<td style="border-bottom: 1px solid #cccccc; width: 414px; height: 20px; background-color: #ffff99; padding-left: 5px">Adobe ImageReady (if installed)</td>
<td style="border-bottom: 1px solid #cccccc; width: 230px; height: 20px; background-color: #ffff99; padding-left: 5px">imageready</td>
</tr>
<tr>
<td style="border-bottom: 1px solid #cccccc; width: 414px; height: 20px; background-color: #ffff99; padding-left: 5px">Adobe Photoshop (if installed)</td>
<td style="border-bottom: 1px solid #cccccc; width: 230px; height: 20px; background-color: #ffff99; padding-left: 5px">photoshop</td>
</tr>
<tr>
<td style="border-bottom: 1px solid #cccccc; width: 414px; padding-left: 5px">Automatic Updates</td>
<td style="border-bottom: 1px solid #cccccc; width: 230px; padding-left: 5px">wuaucpl.cpl</td>
</tr>
<tr>
<td style="border-bottom: 1px solid #cccccc; width: 414px; padding-left: 5px">Bluetooth Transfer Wizard</td>
<td style="border-bottom: 1px solid #cccccc; width: 230px; padding-left: 5px">fsquirt</td>
</tr>
<tr>
<td style="border-bottom: 1px solid #cccccc; width: 414px; padding-left: 5px">Calculator</td>
<td style="border-bottom: 1px solid #cccccc; width: 230px; padding-left: 5px">calc</td>
</tr>
<tr>
<td style="border-bottom: 1px solid #cccccc; width: 414px; padding-left: 5px">Certificate Manager</td>
<td style="border-bottom: 1px solid #cccccc; width: 230px; padding-left: 5px">certmgr.msc</td>
</tr>
<tr>
<td style="border-bottom: 1px solid #cccccc; width: 414px; padding-left: 5px">Character Map</td>
<td style="border-bottom: 1px solid #cccccc; width: 230px; padding-left: 5px">charmap</td>
</tr>
<tr>
<td style="border-bottom: 1px solid #cccccc; width: 414px; padding-left: 5px">Check Disk Utility</td>
<td style="border-bottom: 1px solid #cccccc; width: 230px; padding-left: 5px">chkdsk</td>
</tr>
<tr>
<td style="border-bottom: 1px solid #cccccc; width: 414px; padding-left: 5px">Clipboard Viewer</td>
<td style="border-bottom: 1px solid #cccccc; width: 230px; padding-left: 5px">clipbrd</td>
</tr>
<tr>
<td style="border-bottom: 1px solid #cccccc; width: 414px; padding-left: 5px">Command Prompt</td>
<td style="border-bottom: 1px solid #cccccc; width: 230px; padding-left: 5px">cmd</td>
</tr>
<tr>
<td style="border-bottom: 1px solid #cccccc; width: 414px; padding-left: 5px">Component Services</td>
<td style="border-bottom: 1px solid #cccccc; width: 230px; padding-left: 5px">dcomcnfg</td>
</tr>
<tr>
<td style="border-bottom: 1px solid #cccccc; width: 414px; padding-left: 5px">Computer Management</td>
<td style="border-bottom: 1px solid #cccccc; width: 230px; padding-left: 5px">compmgmt.msc</td>
</tr>
<tr>
<td style="border-bottom: 1px solid #cccccc; width: 414px; height: 20px; background-color: #ffff99; padding-left: 5px">Control Panel</td>
<td style="border-bottom: 1px solid #cccccc; width: 230px; height: 20px; background-color: #ffff99; padding-left: 5px">control</td>
</tr>
<tr>
<td style="border-bottom: 1px solid #cccccc; width: 414px; padding-left: 5px">Date and Time Properties</td>
<td style="border-bottom: 1px solid #cccccc; width: 230px; padding-left: 5px">timedate.cpl</td>
</tr>
<tr>
<td style="border-bottom: 1px solid #cccccc; width: 414px; padding-left: 5px">DDE Shares</td>
<td style="border-bottom: 1px solid #cccccc; width: 230px; padding-left: 5px">ddeshare</td>
</tr>
<tr>
<td style="border-bottom: 1px solid #cccccc; width: 414px; padding-left: 5px">Device Manager</td>
<td style="border-bottom: 1px solid #cccccc; width: 230px; padding-left: 5px">devmgmt.msc</td>
</tr>
<tr>
<td style="border-bottom: 1px solid #cccccc; width: 414px; padding-left: 5px">Direct X Control Panel  (If Installed)*</td>
<td style="border-bottom: 1px solid #cccccc; width: 230px; padding-left: 5px">directx.cpl</td>
</tr>
<tr>
<td style="border-bottom: 1px solid #cccccc; width: 414px; padding-left: 5px">Direct X Troubleshooter</td>
<td style="border-bottom: 1px solid #cccccc; width: 230px; padding-left: 5px">dxdiag</td>
</tr>
<tr>
<td style="border-bottom: 1px solid #cccccc; width: 414px; padding-left: 5px">Disk Cleanup Utility</td>
<td style="border-bottom: 1px solid #cccccc; width: 230px; padding-left: 5px">cleanmgr</td>
</tr>
<tr>
<td style="border-bottom: 1px solid #cccccc; width: 414px; padding-left: 5px">Disk Defragment</td>
<td style="border-bottom: 1px solid #cccccc; width: 230px; padding-left: 5px">dfrg.msc</td>
</tr>
<tr>
<td style="border-bottom: 1px solid #cccccc; width: 414px; padding-left: 5px">Disk Management</td>
<td style="border-bottom: 1px solid #cccccc; width: 230px; padding-left: 5px">diskmgmt.msc</td>
</tr>
<tr>
<td style="border-bottom: 1px solid #cccccc; width: 414px; padding-left: 5px">Disk Partition Manager</td>
<td style="border-bottom: 1px solid #cccccc; width: 230px; padding-left: 5px">diskpart</td>
</tr>
<tr>
<td style="border-bottom: 1px solid #cccccc; width: 414px; padding-left: 5px">Display Properties</td>
<td style="border-bottom: 1px solid #cccccc; width: 230px; padding-left: 5px">control desktop</td>
</tr>
<tr>
<td style="border-bottom: 1px solid #cccccc; width: 414px; padding-left: 5px">Display Properties</td>
<td style="border-bottom: 1px solid #cccccc; width: 230px; padding-left: 5px">desk.cpl</td>
</tr>
<tr>
<td style="border-bottom: 1px solid #cccccc; width: 414px; padding-left: 5px">Display Properties  (w/Appearance Tab Preselected)</td>
<td style="border-bottom: 1px solid #cccccc; width: 230px; padding-left: 5px">control color</td>
</tr>
<tr>
<td style="border-bottom: 1px solid #cccccc; width: 414px; padding-left: 5px">Dr. Watson System Troubleshooting Utility</td>
<td style="border-bottom: 1px solid #cccccc; width: 230px; padding-left: 5px">drwtsn32</td>
</tr>
<tr>
<td style="border-bottom: 1px solid #cccccc; width: 414px; padding-left: 5px">Driver Verifier Utility</td>
<td style="border-bottom: 1px solid #cccccc; width: 230px; padding-left: 5px">verifier</td>
</tr>
<tr>
<td style="border-bottom: 1px solid #cccccc; width: 414px; padding-left: 5px">Event Viewer</td>
<td style="border-bottom: 1px solid #cccccc; width: 230px; padding-left: 5px">eventvwr.msc</td>
</tr>
<tr>
<td style="border-bottom: 1px solid #cccccc; width: 414px; height: 20px; background-color: #ffff99; padding-left: 5px">Files and Settings Transfer Tool</td>
<td style="border-bottom: 1px solid #cccccc; width: 230px; height: 20px; background-color: #ffff99; padding-left: 5px">migwiz</td>
</tr>
<tr>
<td style="border-bottom: 1px solid #cccccc; width: 414px; padding-left: 5px">File Signature Verification Tool</td>
<td style="border-bottom: 1px solid #cccccc; width: 230px; padding-left: 5px">sigverif</td>
</tr>
<tr>
<td style="border-bottom: 1px solid #cccccc; width: 414px; padding-left: 5px">Findfast</td>
<td style="border-bottom: 1px solid #cccccc; width: 230px; padding-left: 5px">findfast.cpl</td>
</tr>
<tr>
<td style="border-bottom: 1px solid #cccccc; width: 414px; height: 20px; background-color: #ffff99; padding-left: 5px">Firefox (if installed)</td>
<td style="border-bottom: 1px solid #cccccc; width: 230px; height: 20px; background-color: #ffff99; padding-left: 5px">firefox</td>
</tr>
<tr>
<td style="border-bottom: 1px solid #cccccc; width: 414px; padding-left: 5px">Folders Properties</td>
<td style="border-bottom: 1px solid #cccccc; width: 230px; padding-left: 5px">control folders</td>
</tr>
<tr>
<td style="border-bottom: 1px solid #cccccc; width: 414px; padding-left: 5px">Fonts</td>
<td style="border-bottom: 1px solid #cccccc; width: 230px; padding-left: 5px">control fonts</td>
</tr>
<tr>
<td style="border-bottom: 1px solid #cccccc; width: 414px; padding-left: 5px">Fonts Folder</td>
<td style="border-bottom: 1px solid #cccccc; width: 230px; padding-left: 5px">fonts</td>
</tr>
<tr>
<td style="border-bottom: 1px solid #cccccc; width: 414px; padding-left: 5px">Free Cell Card Game</td>
<td style="border-bottom: 1px solid #cccccc; width: 230px; padding-left: 5px">freecell</td>
</tr>
<tr>
<td style="border-bottom: 1px solid #cccccc; width: 414px; padding-left: 5px">Game Controllers</td>
<td style="border-bottom: 1px solid #cccccc; width: 230px; padding-left: 5px">joy.cpl</td>
</tr>
<tr>
<td style="border-bottom: 1px solid #cccccc; width: 414px; padding-left: 5px">Group Policy Editor  (XP Prof)</td>
<td style="border-bottom: 1px solid #cccccc; width: 230px; padding-left: 5px">gpedit.msc</td>
</tr>
<tr>
<td style="border-bottom: 1px solid #cccccc; width: 414px; padding-left: 5px">Hearts Card Game</td>
<td style="border-bottom: 1px solid #cccccc; width: 230px; padding-left: 5px">mshearts</td>
</tr>
<tr>
<td style="border-bottom: 1px solid #cccccc; width: 414px; height: 20px; background-color: #ffff99; padding-left: 5px">Help and Support</td>
<td style="border-bottom: 1px solid #cccccc; width: 230px; height: 20px; background-color: #ffff99; padding-left: 5px">helpctr</td>
</tr>
<tr>
<td style="border-bottom: 1px solid #cccccc; width: 414px; height: 20px; background-color: #ffff99; padding-left: 5px">HyperTerminal</td>
<td style="border-bottom: 1px solid #cccccc; width: 230px; height: 20px; background-color: #ffff99; padding-left: 5px">hypertrm</td>
</tr>
<tr>
<td style="border-bottom: 1px solid #cccccc; width: 414px; padding-left: 5px">Iexpress Wizard</td>
<td style="border-bottom: 1px solid #cccccc; width: 230px; padding-left: 5px">iexpress</td>
</tr>
<tr>
<td style="border-bottom: 1px solid #cccccc; width: 414px; padding-left: 5px">Indexing Service</td>
<td style="border-bottom: 1px solid #cccccc; width: 230px; padding-left: 5px">ciadv.msc</td>
</tr>
<tr>
<td style="border-bottom: 1px solid #cccccc; width: 414px; height: 20px; background-color: #ffff99; padding-left: 5px">Internet Connection Wizard</td>
<td style="border-bottom: 1px solid #cccccc; width: 230px; height: 20px; background-color: #ffff99; padding-left: 5px">icwconn1</td>
</tr>
<tr>
<td style="border-bottom: 1px solid #cccccc; width: 414px; padding-left: 5px">Internet Explorer</td>
<td style="border-bottom: 1px solid #cccccc; width: 230px; padding-left: 5px">iexplore</td>
</tr>
<tr>
<td style="border-bottom: 1px solid #cccccc; width: 414px; padding-left: 5px">Internet Properties</td>
<td style="border-bottom: 1px solid #cccccc; width: 230px; padding-left: 5px">inetcpl.cpl</td>
</tr>
<tr>
<td style="border-bottom: 1px solid #cccccc; width: 414px; height: 20px; background-color: #ffff99; padding-left: 5px">Internet Setup Wizard</td>
<td style="border-bottom: 1px solid #cccccc; width: 230px; height: 20px; background-color: #ffff99; padding-left: 5px">inetwiz</td>
</tr>
<tr>
<td style="border-bottom: 1px solid #cccccc; width: 414px; height: 20px; padding-left: 5px; background-color: #f2f2f2">IP  Configuration (Display Connection  Configuration)</td>
<td style="border-bottom: 1px solid #cccccc; width: 230px; height: 20px; padding-left: 5px; background-color: #f2f2f2">ipconfig /all</td>
</tr>
<tr>
<td style="border-bottom: 1px solid #cccccc; width: 414px; height: 20px; padding-left: 5px; background-color: #f2f2f2">IP  Configuration (Display DNS Cache Contents)</td>
<td style="border-bottom: 1px solid #cccccc; width: 230px; height: 20px; padding-left: 5px; background-color: #f2f2f2">ipconfig /displaydns</td>
</tr>
<tr>
<td style="border-bottom: 1px solid #cccccc; width: 414px; height: 20px; padding-left: 5px; background-color: #f2f2f2">IP  Configuration (Delete DNS Cache Contents)</td>
<td style="border-bottom: 1px solid #cccccc; width: 230px; height: 20px; padding-left: 5px; background-color: #f2f2f2">ipconfig /flushdns</td>
</tr>
<tr>
<td style="border-bottom: 1px solid #cccccc; width: 414px; height: 20px; padding-left: 5px; background-color: #f2f2f2">IP  Configuration (Release All Connections)</td>
<td style="border-bottom: 1px solid #cccccc; width: 230px; height: 20px; padding-left: 5px; background-color: #f2f2f2">ipconfig /release</td>
</tr>
<tr>
<td style="border-bottom: 1px solid #cccccc; width: 414px; height: 20px; padding-left: 5px; background-color: #f2f2f2">IP  Configuration (Renew All Connections)</td>
<td style="border-bottom: 1px solid #cccccc; width: 230px; height: 20px; padding-left: 5px; background-color: #f2f2f2">ipconfig /renew</td>
</tr>
<tr>
<td style="border-bottom: 1px solid #cccccc; width: 414px; height: 20px; padding-left: 5px; background-color: #f2f2f2">IP  Configuration (Refreshes DHCP &amp;  Re-Registers DNS)</td>
<td style="border-bottom: 1px solid #cccccc; width: 230px; height: 20px; padding-left: 5px; background-color: #f2f2f2">ipconfig /registerdns</td>
</tr>
<tr>
<td style="border-bottom: 1px solid #cccccc; width: 414px; height: 20px; padding-left: 5px; background-color: #f2f2f2">IP  Configuration (Display DHCP Class ID)</td>
<td style="border-bottom: 1px solid #cccccc; width: 230px; height: 20px; padding-left: 5px; background-color: #f2f2f2">ipconfig /showclassid</td>
</tr>
<tr>
<td style="border-bottom: 1px solid #cccccc; width: 414px; height: 20px; padding-left: 5px; background-color: #f2f2f2">IP  Configuration (Modifies DHCP Class ID)</td>
<td style="border-bottom: 1px solid #cccccc; width: 230px; height: 20px; padding-left: 5px; background-color: #f2f2f2">ipconfig /setclassid</td>
</tr>
<tr>
<td style="border-bottom: 1px solid #cccccc; width: 414px; padding-left: 5px">Java Control Panel  (If Installed)</td>
<td style="border-bottom: 1px solid #cccccc; width: 230px; padding-left: 5px">jpicpl32.cpl</td>
</tr>
<tr>
<td style="border-bottom: 1px solid #cccccc; width: 414px; padding-left: 5px">Java Control Panel  (If Installed)</td>
<td style="border-bottom: 1px solid #cccccc; width: 230px; padding-left: 5px">javaws</td>
</tr>
<tr>
<td style="border-bottom: 1px solid #cccccc; width: 414px; padding-left: 5px">Keyboard Properties</td>
<td style="border-bottom: 1px solid #cccccc; width: 230px; padding-left: 5px">control keyboard</td>
</tr>
<tr>
<td style="border-bottom: 1px solid #cccccc; width: 414px; padding-left: 5px">Local Security Settings</td>
<td style="border-bottom: 1px solid #cccccc; width: 230px; padding-left: 5px">secpol.msc</td>
</tr>
<tr>
<td style="border-bottom: 1px solid #cccccc; width: 414px; padding-left: 5px">Local Users and Groups</td>
<td style="border-bottom: 1px solid #cccccc; width: 230px; padding-left: 5px">lusrmgr.msc</td>
</tr>
<tr>
<td style="border-bottom: 1px solid #cccccc; width: 414px; padding-left: 5px">Logs You Out Of Windows</td>
<td style="border-bottom: 1px solid #cccccc; width: 230px; padding-left: 5px">logoff</td>
</tr>
<tr>
<td style="border-bottom: 1px solid #cccccc; width: 414px; height: 20px; background-color: #ffff99; padding-left: 5px">Malicious Software Removal Tool</td>
<td style="border-bottom: 1px solid #cccccc; width: 230px; height: 20px; background-color: #ffff99; padding-left: 5px">mrt</td>
</tr>
<tr>
<td style="border-bottom: 1px solid #cccccc; width: 414px; height: 20px; background-color: #ffff99; padding-left: 5px">Microsoft Access (if installed)</td>
<td style="border-bottom: 1px solid #cccccc; width: 230px; height: 20px; background-color: #ffff99; padding-left: 5px">access.cpl</td>
</tr>
<tr>
<td style="border-bottom: 1px solid #cccccc; width: 414px; padding-left: 5px">Microsoft Chat</td>
<td style="border-bottom: 1px solid #cccccc; width: 230px; padding-left: 5px">winchat</td>
</tr>
<tr>
<td style="border-bottom: 1px solid #cccccc; width: 414px; height: 20px; background-color: #ffff99; padding-left: 5px">Microsoft Excel (if installed)</td>
<td style="border-bottom: 1px solid #cccccc; width: 230px; height: 20px; background-color: #ffff99; padding-left: 5px">excel</td>
</tr>
<tr>
<td style="border-bottom: 1px solid #cccccc; width: 414px; height: 20px; background-color: #ffff99; padding-left: 5px">Microsoft Frontpage (if installed)</td>
<td style="border-bottom: 1px solid #cccccc; width: 230px; height: 20px; background-color: #ffff99; padding-left: 5px">frontpg</td>
</tr>
<tr>
<td style="border-bottom: 1px solid #cccccc; width: 414px; height: 20px; background-color: #ffff99; padding-left: 5px">Microsoft Movie Maker</td>
<td style="border-bottom: 1px solid #cccccc; width: 230px; height: 20px; background-color: #ffff99; padding-left: 5px">moviemk</td>
</tr>
<tr>
<td style="border-bottom: 1px solid #cccccc; width: 414px; height: 20px; background-color: #ffff99; padding-left: 5px">Microsoft Paint</td>
<td style="border-bottom: 1px solid #cccccc; width: 230px; height: 20px; background-color: #ffff99; padding-left: 5px">mspaint</td>
</tr>
<tr>
<td style="border-bottom: 1px solid #cccccc; width: 414px; height: 20px; background-color: #ffff99; padding-left: 5px">Microsoft Powerpoint (if installed)</td>
<td style="border-bottom: 1px solid #cccccc; width: 230px; height: 20px; background-color: #ffff99; padding-left: 5px">powerpnt</td>
</tr>
<tr>
<td style="border-bottom: 1px solid #cccccc; width: 414px; height: 20px; background-color: #ffff99; padding-left: 5px">Microsoft Word (if installed)</td>
<td style="border-bottom: 1px solid #cccccc; width: 230px; height: 20px; background-color: #ffff99; padding-left: 5px">winword</td>
</tr>
<tr>
<td style="border-bottom: 1px solid #cccccc; width: 414px; height: 20px; background-color: #ffff99; padding-left: 5px">Microsoft Syncronization Tool</td>
<td style="border-bottom: 1px solid #cccccc; width: 230px; height: 20px; background-color: #ffff99; padding-left: 5px">mobsync</td>
</tr>
<tr>
<td style="border-bottom: 1px solid #cccccc; width: 414px; padding-left: 5px">Minesweeper Game</td>
<td style="border-bottom: 1px solid #cccccc; width: 230px; padding-left: 5px">winmine</td>
</tr>
<tr>
<td style="border-bottom: 1px solid #cccccc; width: 414px; padding-left: 5px">Mouse Properties</td>
<td style="border-bottom: 1px solid #cccccc; width: 230px; padding-left: 5px">control mouse</td>
</tr>
<tr>
<td style="border-bottom: 1px solid #cccccc; width: 414px; padding-left: 5px">Mouse Properties</td>
<td style="border-bottom: 1px solid #cccccc; width: 230px; padding-left: 5px">main.cpl</td>
</tr>
<tr>
<td style="border-bottom: 1px solid #cccccc; width: 414px; height: 20px; background-color: #ffff99; padding-left: 5px">Nero (if installed)</td>
<td style="border-bottom: 1px solid #cccccc; width: 230px; height: 20px; background-color: #ffff99; padding-left: 5px">nero</td>
</tr>
<tr>
<td style="border-bottom: 1px solid #cccccc; width: 414px; height: 20px; background-color: #ffff99; padding-left: 5px">Netmeeting</td>
<td style="border-bottom: 1px solid #cccccc; width: 230px; height: 20px; background-color: #ffff99; padding-left: 5px">conf</td>
</tr>
<tr>
<td style="border-bottom: 1px solid #cccccc; width: 414px; padding-left: 5px">Network Connections</td>
<td style="border-bottom: 1px solid #cccccc; width: 230px; padding-left: 5px">control netconnections</td>
</tr>
<tr>
<td style="border-bottom: 1px solid #cccccc; width: 414px; padding-left: 5px">Network Connections</td>
<td style="border-bottom: 1px solid #cccccc; width: 230px; padding-left: 5px">ncpa.cpl</td>
</tr>
<tr>
<td style="border-bottom: 1px solid #cccccc; width: 414px; padding-left: 5px">Network Setup Wizard</td>
<td style="border-bottom: 1px solid #cccccc; width: 230px; padding-left: 5px">netsetup.cpl</td>
</tr>
<tr>
<td style="border-bottom: 1px solid #cccccc; width: 414px; height: 20px; padding-left: 5px; background-color: #f2f2f2">Notepad</td>
<td style="border-bottom: 1px solid #cccccc; width: 230px; height: 20px; padding-left: 5px; background-color: #f2f2f2">notepad</td>
</tr>
<tr>
<td style="border-bottom: 1px solid #cccccc; width: 414px; padding-left: 5px">Nview Desktop Manager (If Installed)</td>
<td style="border-bottom: 1px solid #cccccc; width: 230px; padding-left: 5px">nvtuicpl.cpl</td>
</tr>
<tr>
<td style="border-bottom: 1px solid #cccccc; width: 414px; padding-left: 5px">Object Packager</td>
<td style="border-bottom: 1px solid #cccccc; width: 230px; padding-left: 5px">packager</td>
</tr>
<tr>
<td style="border-bottom: 1px solid #cccccc; width: 414px; padding-left: 5px">ODBC Data Source Administrator</td>
<td style="border-bottom: 1px solid #cccccc; width: 230px; padding-left: 5px">odbccp32.cpl</td>
</tr>
<tr>
<td style="border-bottom: 1px solid #cccccc; width: 414px; padding-left: 5px">On Screen Keyboard</td>
<td style="border-bottom: 1px solid #cccccc; width: 230px; padding-left: 5px">osk</td>
</tr>
<tr>
<td style="border-bottom: 1px solid #cccccc; width: 414px; padding-left: 5px">Opens AC3 Filter (If Installed)</td>
<td style="border-bottom: 1px solid #cccccc; width: 230px; padding-left: 5px">ac3filter.cpl</td>
</tr>
<tr>
<td style="border-bottom: 1px solid #cccccc; width: 414px; height: 20px; background-color: #ffff99; padding-left: 5px">Outlook Express</td>
<td style="border-bottom: 1px solid #cccccc; width: 230px; height: 20px; background-color: #ffff99; padding-left: 5px">msimn</td>
</tr>
<tr>
<td style="border-bottom: 1px solid #cccccc; width: 414px; height: 20px; background-color: #ffff99; padding-left: 5px">Paint</td>
<td style="border-bottom: 1px solid #cccccc; width: 230px; height: 20px; background-color: #ffff99; padding-left: 5px">pbrush</td>
</tr>
<tr>
<td style="border-bottom: 1px solid #cccccc; width: 414px; padding-left: 5px">Password Properties</td>
<td style="border-bottom: 1px solid #cccccc; width: 230px; padding-left: 5px">password.cpl</td>
</tr>
<tr>
<td style="border-bottom: 1px solid #cccccc; width: 414px; padding-left: 5px">Performance Monitor</td>
<td style="border-bottom: 1px solid #cccccc; width: 230px; padding-left: 5px">perfmon.msc</td>
</tr>
<tr>
<td style="border-bottom: 1px solid #cccccc; width: 414px; padding-left: 5px">Performance Monitor</td>
<td style="border-bottom: 1px solid #cccccc; width: 230px; padding-left: 5px">perfmon</td>
</tr>
<tr>
<td style="border-bottom: 1px solid #cccccc; width: 414px; padding-left: 5px">Phone and Modem Options</td>
<td style="border-bottom: 1px solid #cccccc; width: 230px; padding-left: 5px">telephon.cpl</td>
</tr>
<tr>
<td style="border-bottom: 1px solid #cccccc; width: 414px; height: 20px; background-color: #ffff99; padding-left: 5px">Phone Dialer</td>
<td style="border-bottom: 1px solid #cccccc; width: 230px; height: 20px; background-color: #ffff99; padding-left: 5px">dialer</td>
</tr>
<tr>
<td style="border-bottom: 1px solid #cccccc; width: 414px; height: 20px; background-color: #ffff99; padding-left: 5px">Pinball Game</td>
<td style="border-bottom: 1px solid #cccccc; width: 230px; height: 20px; background-color: #ffff99; padding-left: 5px">pinball</td>
</tr>
<tr>
<td style="border-bottom: 1px solid #cccccc; width: 414px; padding-left: 5px">Power Configuration</td>
<td style="border-bottom: 1px solid #cccccc; width: 230px; padding-left: 5px">powercfg.cpl</td>
</tr>
<tr>
<td style="border-bottom: 1px solid #cccccc; width: 414px; padding-left: 5px">Printers and Faxes</td>
<td style="border-bottom: 1px solid #cccccc; width: 230px; padding-left: 5px">control printers</td>
</tr>
<tr>
<td style="border-bottom: 1px solid #cccccc; width: 414px; padding-left: 5px">Printers Folder</td>
<td style="border-bottom: 1px solid #cccccc; width: 230px; padding-left: 5px">printers</td>
</tr>
<tr>
<td style="border-bottom: 1px solid #cccccc; width: 414px; padding-left: 5px">Private Character Editor</td>
<td style="border-bottom: 1px solid #cccccc; width: 230px; padding-left: 5px">eudcedit</td>
</tr>
<tr>
<td style="border-bottom: 1px solid #cccccc; width: 414px; padding-left: 5px">Quicktime  (If Installed)</td>
<td style="border-bottom: 1px solid #cccccc; width: 230px; padding-left: 5px">QuickTime.cpl</td>
</tr>
<tr>
<td style="border-bottom: 1px solid #cccccc; width: 414px; height: 20px; background-color: #ffff99; padding-left: 5px">Quicktime Player (if installed)</td>
<td style="border-bottom: 1px solid #cccccc; width: 230px; height: 20px; background-color: #ffff99; padding-left: 5px">quicktimeplayer</td>
</tr>
<tr>
<td style="border-bottom: 1px solid #cccccc; width: 414px; height: 20px; background-color: #ffff99; padding-left: 5px">Real Player (if installed)</td>
<td style="border-bottom: 1px solid #cccccc; width: 230px; height: 20px; background-color: #ffff99; padding-left: 5px">realplay</td>
</tr>
<tr>
<td style="border-bottom: 1px solid #cccccc; width: 414px; padding-left: 5px">Regional Settings</td>
<td style="border-bottom: 1px solid #cccccc; width: 230px; padding-left: 5px">intl.cpl</td>
</tr>
<tr>
<td style="border-bottom: 1px solid #cccccc; width: 414px; padding-left: 5px">Registry Editor</td>
<td style="border-bottom: 1px solid #cccccc; width: 230px; padding-left: 5px">regedit</td>
</tr>
<tr>
<td style="border-bottom: 1px solid #cccccc; width: 414px; padding-left: 5px">Registry Editor</td>
<td style="border-bottom: 1px solid #cccccc; width: 230px; padding-left: 5px">regedit32</td>
</tr>
<tr>
<td style="border-bottom: 1px solid #cccccc; width: 414px; height: 20px; background-color: #ffff99; padding-left: 5px">Remote Access Phonebook</td>
<td style="border-bottom: 1px solid #cccccc; width: 230px; height: 20px; background-color: #ffff99; padding-left: 5px">rasphone</td>
</tr>
<tr>
<td style="border-bottom: 1px solid #cccccc; width: 414px; height: 20px; padding-left: 5px; background-color: #f2f2f2">Remote Desktop</td>
<td style="border-bottom: 1px solid #cccccc; width: 230px; height: 20px; padding-left: 5px; background-color: #f2f2f2">mstsc</td>
</tr>
<tr>
<td style="border-bottom: 1px solid #cccccc; width: 414px; padding-left: 5px">Removable Storage</td>
<td style="border-bottom: 1px solid #cccccc; width: 230px; padding-left: 5px">ntmsmgr.msc</td>
</tr>
<tr>
<td style="border-bottom: 1px solid #cccccc; width: 414px; padding-left: 5px">Removable Storage Operator Requests</td>
<td style="border-bottom: 1px solid #cccccc; width: 230px; padding-left: 5px">ntmsoprq.msc</td>
</tr>
<tr>
<td style="border-bottom: 1px solid #cccccc; width: 414px; padding-left: 5px">Resultant Set of Policy  (XP Prof)</td>
<td style="border-bottom: 1px solid #cccccc; width: 230px; padding-left: 5px">rsop.msc</td>
</tr>
<tr>
<td style="border-bottom: 1px solid #cccccc; width: 414px; padding-left: 5px">Scanners and Cameras</td>
<td style="border-bottom: 1px solid #cccccc; width: 230px; padding-left: 5px">sticpl.cpl</td>
</tr>
<tr>
<td style="border-bottom: 1px solid #cccccc; width: 414px; padding-left: 5px">Scheduled Tasks</td>
<td style="border-bottom: 1px solid #cccccc; width: 230px; padding-left: 5px">control schedtasks</td>
</tr>
<tr>
<td style="border-bottom: 1px solid #cccccc; width: 414px; padding-left: 5px">Security Center</td>
<td style="border-bottom: 1px solid #cccccc; width: 230px; padding-left: 5px">wscui.cpl</td>
</tr>
<tr>
<td style="border-bottom: 1px solid #cccccc; width: 414px; padding-left: 5px">Services</td>
<td style="border-bottom: 1px solid #cccccc; width: 230px; padding-left: 5px">services.msc</td>
</tr>
<tr>
<td style="border-bottom: 1px solid #cccccc; width: 414px; padding-left: 5px">Shared Folders</td>
<td style="border-bottom: 1px solid #cccccc; width: 230px; padding-left: 5px">fsmgmt.msc</td>
</tr>
<tr>
<td style="border-bottom: 1px solid #cccccc; width: 414px; padding-left: 5px">Shuts Down Windows</td>
<td style="border-bottom: 1px solid #cccccc; width: 230px; padding-left: 5px">shutdown</td>
</tr>
<tr>
<td style="border-bottom: 1px solid #cccccc; width: 414px; padding-left: 5px">Sounds and Audio</td>
<td style="border-bottom: 1px solid #cccccc; width: 230px; padding-left: 5px">mmsys.cpl</td>
</tr>
<tr>
<td style="border-bottom: 1px solid #cccccc; width: 414px; padding-left: 5px">Spider Solitare Card Game</td>
<td style="border-bottom: 1px solid #cccccc; width: 230px; padding-left: 5px">spider</td>
</tr>
<tr>
<td style="border-bottom: 1px solid #cccccc; width: 414px; padding-left: 5px">SQL Client Configuration</td>
<td style="border-bottom: 1px solid #cccccc; width: 230px; padding-left: 5px">cliconfg</td>
</tr>
<tr>
<td style="border-bottom: 1px solid #cccccc; width: 414px; padding-left: 5px">System Configuration Editor</td>
<td style="border-bottom: 1px solid #cccccc; width: 230px; padding-left: 5px">sysedit</td>
</tr>
<tr>
<td style="border-bottom: 1px solid #cccccc; width: 414px; padding-left: 5px">System Configuration Utility</td>
<td style="border-bottom: 1px solid #cccccc; width: 230px; padding-left: 5px">msconfig</td>
</tr>
<tr>
<td style="border-bottom: 1px solid #cccccc; width: 414px; height: 20px; padding-left: 5px; background-color: #f2f2f2">System File Checker Utility (Scan  Immediately)</td>
<td style="border-bottom: 1px solid #cccccc; width: 230px; height: 20px; padding-left: 5px; background-color: #f2f2f2">sfc  /scannow</td>
</tr>
<tr>
<td style="border-bottom: 1px solid #cccccc; width: 414px; height: 20px; padding-left: 5px; background-color: #f2f2f2">System File Checker Utility (Scan Once At  Next Boot)</td>
<td style="border-bottom: 1px solid #cccccc; width: 230px; height: 20px; padding-left: 5px; background-color: #f2f2f2">sfc  /scanonce</td>
</tr>
<tr>
<td style="border-bottom: 1px solid #cccccc; width: 414px; height: 20px; padding-left: 5px; background-color: #f2f2f2">System File Checker Utility (Scan On Every  Boot)</td>
<td style="border-bottom: 1px solid #cccccc; width: 230px; height: 20px; padding-left: 5px; background-color: #f2f2f2">sfc  /scanboot</td>
</tr>
<tr>
<td style="border-bottom: 1px solid #cccccc; width: 414px; height: 20px; padding-left: 5px; background-color: #f2f2f2">System File Checker Utility (Return to  Default Setting)</td>
<td style="border-bottom: 1px solid #cccccc; width: 230px; height: 20px; padding-left: 5px; background-color: #f2f2f2">sfc  /revert</td>
</tr>
<tr>
<td style="border-bottom: 1px solid #cccccc; width: 414px; height: 20px; padding-left: 5px; background-color: #f2f2f2">System File Checker Utility (Purge File  Cache)</td>
<td style="border-bottom: 1px solid #cccccc; width: 230px; height: 20px; padding-left: 5px; background-color: #f2f2f2">sfc  /purgecache</td>
</tr>
<tr>
<td style="border-bottom: 1px solid #cccccc; width: 414px; height: 20px; padding-left: 5px; background-color: #f2f2f2">System File Checker Utility<font face="Verdana"> <font size="2">(Set Cache Size to size x) </font></font></td>
<td style="border-bottom: 1px solid #cccccc; width: 230px; height: 20px; padding-left: 5px; background-color: #f2f2f2">sfc /cachesize=x</td>
</tr>
<tr>
<td style="border-bottom: 1px solid #cccccc; width: 414px; height: 20px; background-color: #ffff99; padding-left: 5px">System Information</td>
<td style="border-bottom: 1px solid #cccccc; width: 230px; height: 20px; background-color: #ffff99; padding-left: 5px">msinfo32</td>
</tr>
<tr>
<td style="border-bottom: 1px solid #cccccc; width: 414px; padding-left: 5px">System Properties</td>
<td style="border-bottom: 1px solid #cccccc; width: 230px; padding-left: 5px">sysdm.cpl</td>
</tr>
<tr>
<td style="border-bottom: 1px solid #cccccc; width: 414px; padding-left: 5px">Task Manager</td>
<td style="border-bottom: 1px solid #cccccc; width: 230px; padding-left: 5px">taskmgr</td>
</tr>
<tr>
<td style="border-bottom: 1px solid #cccccc; width: 414px; height: 20px; background-color: #ffff99; padding-left: 5px">TCP Tester</td>
<td style="border-bottom: 1px solid #cccccc; width: 230px; height: 20px; background-color: #ffff99; padding-left: 5px">tcptest</td>
</tr>
<tr>
<td style="border-bottom: 1px solid #cccccc; width: 414px; padding-left: 5px">Telnet Client</td>
<td style="border-bottom: 1px solid #cccccc; width: 230px; padding-left: 5px">telnet</td>
</tr>
<tr>
<td style="border-bottom: 1px solid #cccccc; width: 414px; height: 20px; background-color: #ffff99; padding-left: 5px">Tweak UI (if installed)</td>
<td style="border-bottom: 1px solid #cccccc; width: 230px; height: 20px; background-color: #ffff99; padding-left: 5px">tweakui</td>
</tr>
<tr>
<td style="border-bottom: 1px solid #cccccc; width: 414px; padding-left: 5px">User Account Management</td>
<td style="border-bottom: 1px solid #cccccc; width: 230px; padding-left: 5px">nusrmgr.cpl</td>
</tr>
<tr>
<td style="border-bottom: 1px solid #cccccc; width: 414px; padding-left: 5px">Utility Manager</td>
<td style="border-bottom: 1px solid #cccccc; width: 230px; padding-left: 5px">utilman</td>
</tr>
<tr>
<td style="border-bottom: 1px solid #cccccc; width: 414px; height: 20px; background-color: #ffff99; padding-left: 5px">Windows Address Book</td>
<td style="border-bottom: 1px solid #cccccc; width: 230px; height: 20px; background-color: #ffff99; padding-left: 5px">wab</td>
</tr>
<tr>
<td style="border-bottom: 1px solid #cccccc; width: 414px; height: 20px; background-color: #ffff99; padding-left: 5px">Windows Address Book Import Utility</td>
<td style="border-bottom: 1px solid #cccccc; width: 230px; height: 20px; background-color: #ffff99; padding-left: 5px">wabmig</td>
</tr>
<tr>
<td style="border-bottom: 1px solid #cccccc; width: 414px; height: 20px; background-color: #ffff99; padding-left: 5px">Windows Backup Utility (if installed)</td>
<td style="border-bottom: 1px solid #cccccc; width: 230px; height: 20px; background-color: #ffff99; padding-left: 5px">ntbackup</td>
</tr>
<tr>
<td style="border-bottom: 1px solid #cccccc; width: 414px; padding-left: 5px">Windows Explorer</td>
<td style="border-bottom: 1px solid #cccccc; width: 230px; padding-left: 5px">explorer</td>
</tr>
<tr>
<td style="border-bottom: 1px solid #cccccc; width: 414px; padding-left: 5px">Windows Firewall</td>
<td style="border-bottom: 1px solid #cccccc; width: 230px; padding-left: 5px">firewall.cpl</td>
</tr>
<tr>
<td style="border-bottom: 1px solid #cccccc; width: 414px; padding-left: 5px">Windows Magnifier</td>
<td style="border-bottom: 1px solid #cccccc; width: 230px; padding-left: 5px">magnify</td>
</tr>
<tr>
<td style="border-bottom: 1px solid #cccccc; width: 414px; padding-left: 5px">Windows Management Infrastructure</td>
<td style="border-bottom: 1px solid #cccccc; width: 230px; padding-left: 5px">wmimgmt.msc</td>
</tr>
<tr>
<td style="border-bottom: 1px solid #cccccc; width: 414px; height: 20px; background-color: #ffff99; padding-left: 5px">Windows Media Player</td>
<td style="border-bottom: 1px solid #cccccc; width: 230px; height: 20px; background-color: #ffff99; padding-left: 5px">wmplayer</td>
</tr>
<tr>
<td style="border-bottom: 1px solid #cccccc; width: 414px; height: 20px; background-color: #ffff99; padding-left: 5px">Windows Messenger</td>
<td style="border-bottom: 1px solid #cccccc; width: 230px; height: 20px; background-color: #ffff99; padding-left: 5px">msmsgs</td>
</tr>
<tr>
<td style="border-bottom: 1px solid #cccccc; width: 414px; height: 20px; background-color: #ffff99; padding-left: 5px">Windows Picture Import Wizard (need camera connected)</td>
<td style="border-bottom: 1px solid #cccccc; width: 230px; height: 20px; background-color: #ffff99; padding-left: 5px">wiaacmgr</td>
</tr>
<tr>
<td style="border-bottom: 1px solid #cccccc; width: 414px; padding-left: 5px">Windows System Security Tool</td>
<td style="border-bottom: 1px solid #cccccc; width: 230px; padding-left: 5px">syskey</td>
</tr>
<tr>
<td style="border-bottom: 1px solid #cccccc; width: 414px; padding-left: 5px">Windows Update Launches</td>
<td style="border-bottom: 1px solid #cccccc; width: 230px; padding-left: 5px">wupdmgr</td>
</tr>
<tr>
<td style="border-bottom: 1px solid #cccccc; width: 414px; height: 20px; background-color: #ffff99; padding-left: 5px">Windows Version (to show which version of windows)</td>
<td style="border-bottom: 1px solid #cccccc; width: 230px; height: 20px; background-color: #ffff99; padding-left: 5px">winver</td>
</tr>
<tr>
<td style="border-bottom: 1px solid #cccccc; width: 414px; padding-left: 5px">Windows XP Tour Wizard</td>
<td style="border-bottom: 1px solid #cccccc; width: 230px; padding-left: 5px">tourstart</td>
</tr>
<tr>
<td style="border-bottom: 1px solid #cccccc; width: 414px; padding-left: 5px">Wordpad</td>
<td style="border-bottom: 1px solid #cccccc; width: 230px; padding-left: 5px">write</td>
</tr>
</table>
<p><font color="#0000ff"><font color="#0000ff"><font color="#0000ff"><font color="#0000ff"><font color="#0000ff"><font color="#0000ff"><font color="#0000ff"><font color="#0000ff"><font color="#0000ff"><font color="#0000ff"><font color="#0000ff"></font></font></font></font></font></font></font></font></font></font></font></p>
]]></content:encoded>
			<wfw:commentRss>http://www.rodeofive.com/blog/2008/01/14/156-useful-run-commands/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to configure SQL Server 2005 to allow remote connections</title>
		<link>http://www.rodeofive.com/blog/2008/01/06/how-to-configure-sql-server-2005-to-allow-remote-connections/</link>
		<comments>http://www.rodeofive.com/blog/2008/01/06/how-to-configure-sql-server-2005-to-allow-remote-connections/#comments</comments>
		<pubDate>Mon, 07 Jan 2008 03:42:17 +0000</pubDate>
		<dc:creator>boarderX</dc:creator>
				<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[asp.net]]></category>
		<category><![CDATA[c#]]></category>

		<guid isPermaLink="false">http://www.rodeofive.com/blog/2008/01/06/how-to-configure-sql-server-2005-to-allow-remote-connections/</guid>
		<description><![CDATA[Microsoft Article 914277
INTRODUCTION
When you try to connect to an instance of Microsoft SQL Server 2005 from a remote computer, you may receive an error message. This problem may occur when you use any program to connect to SQL Server. For example, you receive the following error message when you use the SQLCMD utility to connect [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://support.microsoft.com/default.aspx?scid=kb;EN-US;914277">Microsoft Article 914277</a></p>
<p>INTRODUCTION<br />
When you try to connect to an instance of Microsoft SQL Server 2005 from a remote computer, you may receive an error message. This problem may occur when you use any program to connect to SQL Server. For example, you receive the following error message when you use the SQLCMD utility to connect to SQL Server:<br />
Sqlcmd: Error: Microsoft SQL Native Client: An error has occurred while establishing a connection to the server. When connecting to SQL Server 2005, this failure may be caused by the fact that under the default settings SQL Server does not allow remote connections.<br />
This problem may occur when SQL Server 2005 is not configured to accept remote connections. By default, SQL Server 2005 Express Edition and SQL Server 2005 Developer Edition do not allow remote connections. To configure SQL Server 2005 to allow remote connections, complete all the following steps:<br />
•	Enable remote connections on the instance of SQL Server that you want to connect to from a remote computer.<br />
•	Turn on the SQL Server Browser service.<br />
•	Configure the firewall to allow network traffic that is related to SQL Server and to the SQL Server Browser service.<br />
This article describes how to complete each of these steps.</p>
<p>Back to the top<br />
MORE INFORMATION<br />
To enable remote connections on the instance of SQL Server 2005 and to turn on the SQL Server Browser service, use the SQL Server 2005 Surface Area Configuration tool. The Surface Area Configuration tool is installed when you install SQL Server 2005.</p>
<p>Back to the top<br />
Enable remote connections for SQL Server 2005 Express or SQL Server 2005 Developer Edition<br />
You must enable remote connections for each instance of SQL Server 2005 that you want to connect to from a remote computer. To do this, follow these steps:<br />
1.	Click Start, point to Programs, point to Microsoft SQL Server 2005, point to Configuration Tools, and then click SQL Server Surface Area Configuration.<br />
2.	On the SQL Server 2005 Surface Area Configuration page, click Surface Area Configuration for Services and Connections.<br />
3.	On the Surface Area Configuration for Services and Connections page, expand Database Engine, click Remote Connections, click Local and remote connections, click the appropriate protocol to enable for your environment, and then click Apply.</p>
<p>Note Click OK when you receive the following message:<br />
Changes to Connection Settings will not take effect until you restart the Database Engine service.<br />
4.	On the Surface Area Configuration for Services and Connections page, expand Database Engine, click Service, click Stop, wait until the MSSQLSERVER service stops, and then click Start to restart the MSSQLSERVER service.</p>
<p>Back to the top<br />
Enable the SQL Server Browser service<br />
If you are running SQL Server 2005 by using an instance name and you are not using a specific TCP/IP port number in your connection string, you must enable the SQL Server Browser service to allow for remote connections. For example, SQL Server 2005 Express is installed with a default instance name of Computer Name\SQLEXPRESS. You are only required to enable the SQL Server Browser service one time, regardless of how many instances of SQL Server 2005 you are running. To enable the SQL Server Browser service, follow these steps.</p>
<p>Important These steps may increase your security risk. These steps may also make your computer or your network more vulnerable to attack by malicious users or by malicious software such as viruses. We recommend the process that this article describes to enable programs to operate as they are designed to, or to implement specific program capabilities. Before you make these changes, we recommend that you evaluate the risks that are associated with implementing this process in your particular environment. If you choose to implement this process, take any appropriate additional steps to help protect your system. We recommend that you use this process only if you really require this process.<br />
1.	Click Start, point to Programs, point to Microsoft SQL Server 2005, point to Configuration Tools, and then click SQL Server Surface Area Configuration.<br />
2.	On the SQL Server 2005 Surface Area Configuration page, click Surface Area Configuration for Services and Connections.<br />
3.	On the Surface Area Configuration for Services and Connections page, click SQL Server Browser, click Automatic for Startup type, and then click Apply.</p>
<p>Note When you click the Automatic option, the SQL Server Browser service starts automatically every time that you start Microsoft Windows.<br />
4.	Click Start, and then click OK.<br />
Note When you run the SQL Server Browser service on a computer, the computer displays the instance names and the connection information for each instance of SQL Server that is running on the computer. This risk can be reduced by not enabling the SQL Server Browser service and by connecting to the instance of SQL Server directly through an assigned TCP port. Connecting directly to an instance of SQL Server through a TCP port is beyond the scope of this article. For more information about the SQL Server Browser server and connecting to an instance of SQL Server, see the following topics in SQL Server Books Online:<br />
•	SQL Server Browser Service<br />
•	Connecting to the SQL Server Database Engine<br />
•	Client Network Configuration</p>
<p>Back to the top<br />
Create exceptions in Windows Firewall<br />
These steps apply to the version of Windows Firewall that is included in Windows XP Service Pack 2 (SP2) and in Windows Server 2003. If you are using a different firewall system, see your firewall documentation for more information.</p>
<p>If you are running a firewall on the computer that is running SQL Server 2005, external connections to SQL Server 2005 will be blocked unless SQL Server 2005 and the SQL Server Browser service can communicate through the firewall. You must create an exception for each instance of SQL Server 2005 that you want to accept remote connections and an exception for the SQL Server Browser service.</p>
<p>SQL Server 2005 uses an instance ID as part of the path when you install its program files. To create an exception for each instance of SQL Server, you must identify the correct instance ID. To obtain an instance ID, follow these steps:<br />
1.	Click Start, point to Programs, point to Microsoft SQL Server 2005, point to Configuration Tools, and then click SQL Server Configuration Manager.<br />
2.	In SQL Server Configuration Manager, click the SQL Server Browser service in the right pane, right-click the instance name in the main window, and then click Properties.<br />
3.	On the SQL Server Browser Properties page, click the Advanced tab, locate the instance ID in the property list, and then click OK.<br />
To open Windows Firewall, click Start, click Run, type firewall.cpl, and then click OK.<br />
Create an exception for SQL Server 2005 in Windows Firewall<br />
To create an exception for SQL Server 2005 in Windows Firewall, follow these steps:<br />
1.	In Windows Firewall, click the Exceptions tab, and then click Add Program.<br />
2.	In the Add a Program window, click Browse.<br />
3.	Click the C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\Binn\sqlservr.exe executable program, click Open, and then click OK.</p>
<p>Note The path may be different depending on where SQL Server 2005 is installed. MSSQL.1 is a placeholder for the instance ID that you obtained in step 3 of the previous procedure.<br />
4.	Repeat steps 1 through 3 for each instance of SQL Server 2005 that needs an exception.<br />
Create an exception for the SQL Server Browser service in Windows Firewall<br />
To create an exception for the SQL Server Browser service in Windows Firewall, follow these steps:<br />
1.	In Windows Firewall, click the Exceptions tab, and then click Add Program.<br />
2.	In the Add a Program window, click Browse.<br />
3.	Click the C:\Program Files\Microsoft SQL Server\90\Shared\sqlbrowser.exe executable program, click Open, and then click OK.</p>
<p>Note The path may be different depending on where SQL Server 2005 is installed.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.rodeofive.com/blog/2008/01/06/how-to-configure-sql-server-2005-to-allow-remote-connections/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Add a Visual Studio Solution to a new SVN Repository</title>
		<link>http://www.rodeofive.com/blog/2007/12/18/add-a-visual-studio-solution-to-a-new-svn-repository/</link>
		<comments>http://www.rodeofive.com/blog/2007/12/18/add-a-visual-studio-solution-to-a-new-svn-repository/#comments</comments>
		<pubDate>Wed, 19 Dec 2007 03:52:48 +0000</pubDate>
		<dc:creator>boarderX</dc:creator>
				<category><![CDATA[c#]]></category>

		<guid isPermaLink="false">http://www.rodeofive.com/blog/2007/12/18/add-a-visual-studio-solution-to-a-new-svn-repository/</guid>
		<description><![CDATA[Add a Visual Studio Solution to a new SVN Repository
1. Navigate to master SVN directory =
(directory that stores all repositories)
2. Create new directory within master =
SVN directory
3. Right-Click on new directory and =
within SVN menu, choose Add New Repository
4. Open the Visual Studio =
solution
5. Open the solution explorer
6. Right click on the solution name =
and [...]]]></description>
			<content:encoded><![CDATA[<p>Add a Visual Studio Solution to a new SVN Repository</p>
<p><P><FONT SIZE="3D2">1. Navigate to master SVN directory =<br />
(directory that stores all repositories)</FONT></p>
<p><BR><FONT SIZE="3D2">2. Create new directory within master =<br />
SVN directory</FONT></p>
<p><BR><FONT SIZE="3D2">3. Right-Click on new directory and =<br />
within SVN menu, choose Add New Repository</FONT></p>
<p><BR><FONT SIZE="3D2">4. Open the Visual Studio =<br />
solution</FONT></p>
<p><BR><FONT SIZE="3D2">5. Open the solution explorer</FONT></p>
<p><BR><FONT SIZE="3D2">6. Right click on the solution name =<br />
and select &quot;Force ANKH to load for this solution&quot;</FONT></p>
<p><BR><FONT SIZE="3D2">7. A popup will appear requesting the =<br />
URL to the repository. Enter the location to the directory created above =<br />
in the following style: </FONT><U><FONT SIZE="3D2">file:///D:/dir1/dir2/dir3</FONT></U></P></p>
<p><P><FONT SIZE="3D2">8. Click OK and the solution will be =<br />
committed to the new repository</FONT><br />
</P></p>
]]></content:encoded>
			<wfw:commentRss>http://www.rodeofive.com/blog/2007/12/18/add-a-visual-studio-solution-to-a-new-svn-repository/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Visual Studio Could Not Write to Output File Annoyance</title>
		<link>http://www.rodeofive.com/blog/2007/12/18/visual-studio-could-not-write-to-output-file-annoyance/</link>
		<comments>http://www.rodeofive.com/blog/2007/12/18/visual-studio-could-not-write-to-output-file-annoyance/#comments</comments>
		<pubDate>Wed, 19 Dec 2007 03:22:42 +0000</pubDate>
		<dc:creator>boarderX</dc:creator>
				<category><![CDATA[c#]]></category>

		<guid isPermaLink="false">http://www.rodeofive.com/blog/2007/12/18/visual-studio-could-not-write-to-output-file-annoyance/</guid>
		<description><![CDATA[Visual Studio Could Not Write to Output File Annoyance
Posted By Steven Smith at aspadvice.com =
(http://aspadvice.com/blogs/ssmith/archive/2005/03/21/1849.=
aspx)

Every now and then my VS.NET solutions will fail =
to build because of an error like:

Could not write to outputfile (filepath in /obj/ =
folder).=A0 The file is being used by another process.

There is a KB article describing this =
bug:

BUG: Could Not [...]]]></description>
			<content:encoded><![CDATA[<p>Visual Studio Could Not Write to Output File Annoyance</p>
<p><P><FONT>Posted By Steven Smith at aspadvice.com =<br />
(</FONT><FONT>http://aspadvice.com/blogs/ssmith/archive/2005/03/21/1849.=<br />
aspx</FONT></U><FONT>)</FONT><br />
</P></p>
<p><P><FONT>Every now and then my VS.NET solutions will fail =<br />
to build because of an error like:</FONT><br />
</P></p>
<p><P><FONT>Could not write to outputfile (filepath in /obj/ =<br />
folder).=A0 The file is being used by another process.</FONT><br />
</P></p>
<p><P><FONT>There is a KB article describing this =<br />
bug:</FONT><br />
</P></p>
<p><P><U><FONT>BUG: Could Not Copy Temporary Files to =<br />
the Output Directory</FONT></U><br />
</P></p>
<p><P><FONT>But to be honest, that has never helped me one =<br />
bit.=A0 In my case, I&#8217;m not using a shared output folder, I am using =<br />
Copy Local, and the project with the issues is only being referenced by =<br />
Project References.=A0 So that KB is worthless, but it&#8217;s the only one =<br />
I&#8217;ve found thus far.</FONT></P></p>
<p><P><FONT>Sometimes I get things to work by switching from =<br />
Debug to Release mode, or vice versa.=A0 This usually works for one or =<br />
two builds, sometimes more, but usually it ends up failing as well, at =<br />
which point both the /obj/debug/assembly.dll and =<br />
/obj/release/assembly.dll are being locked by VS.NET Intellisense and =<br />
it&#8217;s game over.</FONT></P></p>
<p><P><FONT>Sometimes restarting VS.NET will help.=A0 Often =<br />
not.=A0 Or, often only for one build.</FONT><br />
</P></p>
<p><P><FONT>What I&#8217;ve found worked for me most recently, and =<br />
which I&#8217;m posting here as much for my own future reference as for =<br />
anybody else, is this:</FONT></P></p>
<p><P><FONT>1) Find all the projects that reference the =<br />
project whose assembly is causing the problem.<BR><br />
2) Remove all references to said project.<BR><br />
3) Build just that project.=A0 If it works, you&#8217;re good to go.<BR><br />
4) Re-add Project References to the project (for the ones you =<br />
deleted).<BR><br />
</FONT><br />
</P><br />
<BR></p>
]]></content:encoded>
			<wfw:commentRss>http://www.rodeofive.com/blog/2007/12/18/visual-studio-could-not-write-to-output-file-annoyance/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Microsoft Alpha Filters</title>
		<link>http://www.rodeofive.com/blog/2007/12/03/microsoft-alpha-filters/</link>
		<comments>http://www.rodeofive.com/blog/2007/12/03/microsoft-alpha-filters/#comments</comments>
		<pubDate>Mon, 03 Dec 2007 05:22:19 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[css]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://www.rodeofive.com/blog/2007/12/03/microsoft-alpha-filters/</guid>
		<description><![CDATA[This site allows you to play around with the MS alpha filters and writes the CSS to accomplish the look chosen.
http://samples.msdn.microsoft.com/workshop/samples/author/filter/Alpha.htm
]]></description>
			<content:encoded><![CDATA[<p>This site allows you to play around with the MS alpha filters and writes the CSS to accomplish the look chosen.</p>
<p><a href="http://samples.msdn.microsoft.com/workshop/samples/author/filter/Alpha.htm">http://samples.msdn.microsoft.com/workshop/samples/author/filter/Alpha.htm</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.rodeofive.com/blog/2007/12/03/microsoft-alpha-filters/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The ULTIMATE ViewState Tutorial</title>
		<link>http://www.rodeofive.com/blog/2007/11/30/the-ultimate-viewstate-tutorial/</link>
		<comments>http://www.rodeofive.com/blog/2007/11/30/the-ultimate-viewstate-tutorial/#comments</comments>
		<pubDate>Fri, 30 Nov 2007 13:48:34 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[asp.net]]></category>

		<guid isPermaLink="false">http://www.rodeofive.com/blog/2007/11/30/the-ultimate-viewstate-tutorial/</guid>
		<description><![CDATA[Infinities Loop wrote a great article on ViewState
http://weblogs.asp.net/infinitiesloop/archive/2006/08/03/Truly-Understanding-Viewstate.aspx
]]></description>
			<content:encoded><![CDATA[<p>Infinities Loop wrote a great article on ViewState</p>
<p><a href="http://weblogs.asp.net/infinitiesloop/archive/2006/08/03/Truly-Understanding-Viewstate.aspx">http://weblogs.asp.net/infinitiesloop/archive/2006/08/03/Truly-Understanding-Viewstate.aspx</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.rodeofive.com/blog/2007/11/30/the-ultimate-viewstate-tutorial/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>LINQ Provider Basics</title>
		<link>http://www.rodeofive.com/blog/2007/11/24/linq-provider-basics/</link>
		<comments>http://www.rodeofive.com/blog/2007/11/24/linq-provider-basics/#comments</comments>
		<pubDate>Sat, 24 Nov 2007 22:55:43 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[LINQ]]></category>
		<category><![CDATA[asp.net]]></category>

		<guid isPermaLink="false">http://www.rodeofive.com/blog/2007/11/24/linq-provider-basics/</guid>
		<description><![CDATA[Articles from DotNetSlackers
 LINQ Provider Basics
Introducing LINQ – Part 1
Introducing LINQ – Part 2
Introducing LINQ – Part 3
Introducing LINQ – Part 4
Introducing LINQ – Part 5
]]></description>
			<content:encoded><![CDATA[<p>Articles from DotNetSlackers</p>
<p><a href="http://dotnetslackers.com/articles/csharp/LINQProviderBasics."> LINQ Provider Basics</a><br />
<a href="http://dotnetslackers.com/articles/csharp/IntroducingLINQ1.aspx">Introducing LINQ – Part 1</a><br />
<a href="http://dotnetslackers.com/articles/csharp/IntroducingLINQ2.aspx">Introducing LINQ – Part 2</a><br />
<a href="http://dotnetslackers.com/articles/csharp/IntroducingLINQ3.aspx">Introducing LINQ – Part 3</a><br />
<a href="http://dotnetslackers.com/articles/csharp/IntroducingLINQ4.aspx">Introducing LINQ – Part 4</a><br />
<a href="http://dotnetslackers.com/articles/csharp/IntroducingLINQ5.aspx">Introducing LINQ – Part 5</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.rodeofive.com/blog/2007/11/24/linq-provider-basics/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Scott Guthrie&#8217;s Blog Post on the Visual Studio 2008 Release</title>
		<link>http://www.rodeofive.com/blog/2007/11/20/scott-guthries-blog-post-on-the-visual-studio-2008-release/</link>
		<comments>http://www.rodeofive.com/blog/2007/11/20/scott-guthries-blog-post-on-the-visual-studio-2008-release/#comments</comments>
		<pubDate>Tue, 20 Nov 2007 04:44:44 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[.Net]]></category>
		<category><![CDATA[Visual Studio 2008]]></category>
		<category><![CDATA[ajax]]></category>
		<category><![CDATA[asp.net]]></category>
		<category><![CDATA[c#]]></category>

		<guid isPermaLink="false">http://www.rodeofive.com/blog/2007/11/20/scott-guthries-blog-post-on-the-visual-studio-2008-release/</guid>
		<description><![CDATA[Scott Guthrie&#8217;s VS2008 Release post. 
Link
]]></description>
			<content:encoded><![CDATA[<p>Scott Guthrie&#8217;s VS2008 Release post. <a href="http://weblogs.asp.net/scottgu/archive/2007/11/19/visual-studio-2008-and-net-3-5-released.aspx"></a></p>
<p><a href="http://weblogs.asp.net/scottgu/archive/2007/11/19/visual-studio-2008-and-net-3-5-released.aspx">Link</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.rodeofive.com/blog/2007/11/20/scott-guthries-blog-post-on-the-visual-studio-2008-release/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>JQuery TabContainer Theme with Tab Transition Animations</title>
		<link>http://www.rodeofive.com/blog/2007/11/20/jquery-tabcontainer-theme-with-tab-transition-animations/</link>
		<comments>http://www.rodeofive.com/blog/2007/11/20/jquery-tabcontainer-theme-with-tab-transition-animations/#comments</comments>
		<pubDate>Tue, 20 Nov 2007 04:40:56 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[JQuery]]></category>
		<category><![CDATA[ajax]]></category>
		<category><![CDATA[asp.net]]></category>

		<guid isPermaLink="false">http://www.rodeofive.com/blog/2007/11/20/jquery-tabcontainer-theme-with-tab-transition-animations/</guid>
		<description><![CDATA[Another good post from Matt Berseth.
mattberseth.com/blog/2007/11/jquery_tabcontainer_theme_with.html
]]></description>
			<content:encoded><![CDATA[<p>Another good post from Matt Berseth.</p>
<p><a href="http://mattberseth.com/blog/2007/11/jquery_tabcontainer_theme_with.html">mattberseth.com/blog/2007/11/jquery_tabcontainer_theme_with.html</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.rodeofive.com/blog/2007/11/20/jquery-tabcontainer-theme-with-tab-transition-animations/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Six “Piggy” Banks That Can Help Teach Kids Money Management Skills</title>
		<link>http://www.rodeofive.com/blog/2007/11/19/six-%e2%80%9cpiggy%e2%80%9d-banks-that-can-help-teach-kids-money-management-skills/</link>
		<comments>http://www.rodeofive.com/blog/2007/11/19/six-%e2%80%9cpiggy%e2%80%9d-banks-that-can-help-teach-kids-money-management-skills/#comments</comments>
		<pubDate>Mon, 19 Nov 2007 06:35:21 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[c#]]></category>

		<guid isPermaLink="false">http://www.rodeofive.com/blog/2007/11/19/six-%e2%80%9cpiggy%e2%80%9d-banks-that-can-help-teach-kids-money-management-skills/</guid>
		<description><![CDATA[Link
]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.bloggingawaydebt.com/2007/11/six-piggy-banks-that-can-help-teach-kids-money-management-skills/">Link</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.rodeofive.com/blog/2007/11/19/six-%e2%80%9cpiggy%e2%80%9d-banks-that-can-help-teach-kids-money-management-skills/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Deployment problems with ASP.NET AJAX applications</title>
		<link>http://www.rodeofive.com/blog/2007/11/19/deployment-problems-with-aspnet-ajax-applications/</link>
		<comments>http://www.rodeofive.com/blog/2007/11/19/deployment-problems-with-aspnet-ajax-applications/#comments</comments>
		<pubDate>Mon, 19 Nov 2007 06:32:33 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[ajax]]></category>
		<category><![CDATA[asp.net]]></category>

		<guid isPermaLink="false">http://www.rodeofive.com/blog/2007/11/19/deployment-problems-with-aspnet-ajax-applications/</guid>
		<description><![CDATA[From LA.NetLink
]]></description>
			<content:encoded><![CDATA[<p>From LA.Net<a href="http://msmvps.com/blogs/luisabreu/archive/2007/10/26/deployment-problems-with-asp-net-ajax-applications.aspx">Link</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.rodeofive.com/blog/2007/11/19/deployment-problems-with-aspnet-ajax-applications/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Implement and Utilize URL Rewriting with ASP.NET</title>
		<link>http://www.rodeofive.com/blog/2007/11/19/how-to-implement-and-utilize-url-rewriting-with-aspnet/</link>
		<comments>http://www.rodeofive.com/blog/2007/11/19/how-to-implement-and-utilize-url-rewriting-with-aspnet/#comments</comments>
		<pubDate>Mon, 19 Nov 2007 06:29:15 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[asp.net]]></category>

		<guid isPermaLink="false">http://www.rodeofive.com/blog/2007/11/19/how-to-implement-and-utilize-url-rewriting-with-aspnet/</guid>
		<description><![CDATA[Written by By David Consdorf
Link
]]></description>
			<content:encoded><![CDATA[<p>Written by By David Consdorf</p>
<p><a href="http://www.developer.com/net/asp/article.php/3703901">Link</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.rodeofive.com/blog/2007/11/19/how-to-implement-and-utilize-url-rewriting-with-aspnet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Exploring one of MS AJAX’s often overlooked features</title>
		<link>http://www.rodeofive.com/blog/2007/11/19/exploring-one-of-ms-ajax%e2%80%99s-often-overlooked-features/</link>
		<comments>http://www.rodeofive.com/blog/2007/11/19/exploring-one-of-ms-ajax%e2%80%99s-often-overlooked-features/#comments</comments>
		<pubDate>Mon, 19 Nov 2007 06:15:22 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[ajax]]></category>
		<category><![CDATA[asp.net]]></category>

		<guid isPermaLink="false">http://www.rodeofive.com/blog/?p=3</guid>
		<description><![CDATA[Useful post on using client script with ASP.Net:
encosia.com
]]></description>
			<content:encoded><![CDATA[<p>Useful post on using client script with ASP.Net:</p>
<p><a href="http://encosia.com/2007/11/15/exploring-one-of-ms-ajaxs-often-overlooked-features/">encosia.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.rodeofive.com/blog/2007/11/19/exploring-one-of-ms-ajax%e2%80%99s-often-overlooked-features/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
