<?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>5 to 9 Computer Services</title>
	<atom:link href="http://www.5to9pc.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.5to9pc.com</link>
	<description>Professional On-Site Computer Repair</description>
	<lastBuildDate>Sun, 01 Apr 2012 23:48:58 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Copying data between servers using CRM 4.0 XrmLinq</title>
		<link>http://www.5to9pc.com/blog/crm-data-copy/</link>
		<comments>http://www.5to9pc.com/blog/crm-data-copy/#comments</comments>
		<pubDate>Mon, 05 Mar 2012 01:55:57 +0000</pubDate>
		<dc:creator>Ivan</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[CRM XrmLinq]]></category>
		<category><![CDATA[LINQ]]></category>

		<guid isPermaLink="false">http://www.5to9pc.com/?p=254</guid>
		<description><![CDATA[This code snippet demonstrates a simple data copy between 2 CRM servers using XrmLinq. This code can be easily implemented using a Console application and ran as a scheduled task. &#160; CrmDataContext sourceContext = &#8230;; CrmDataContext targetContext = &#8230;;   var allContacts = sourceContext.Contacts.Where(c =&#62; c.StateCode == &#8220;Active&#8221;); foreach (var c in allContacts) {       <a href='http://www.5to9pc.com/blog/crm-data-copy/' class='excerpt-more'>[...]</a>]]></description>
			<content:encoded><![CDATA[<p>This code snippet demonstrates a simple data copy between 2 CRM servers using XrmLinq. This code can be easily implemented using a Console application and ran as a scheduled task.</p>
<p>&nbsp;</p>
<address class="MsoNormal"><span style="font-size: 10pt; font-family: 'Courier New'; color: blue;">CrmDataContext</span><span style="font-size: 10pt; font-family: 'Courier New';"> sourceContext = &#8230;;</span></address>
<address class="MsoNormal"><span style="font-size: 10pt; font-family: 'Courier New'; color: blue;">CrmDataContext</span><span style="font-size: 10pt; font-family: 'Courier New';"> targetContext = &#8230;;</span></address>
<address class="MsoNormal"><span style="font-size: 10pt; font-family: 'Courier New';"> </span></address>
<address class="MsoNormal"><span style="font-size: 10pt; font-family: 'Courier New'; color: blue;">var</span><span style="font-size: 10pt; font-family: 'Courier New';"> allContacts = sourceContext.Contacts.Where(c =&gt; c.StateCode == <span style="color: #a31515;">&#8220;Active&#8221;</span>);</span></address>
<address class="MsoNormal"><span style="font-size: 10pt; font-family: 'Courier New'; color: blue;">foreach</span><span style="font-size: 10pt; font-family: 'Courier New';"> (<span style="color: blue;">var</span> c <span style="color: blue;">in</span> allContacts)</span></address>
<address class="MsoNormal"><span style="font-size: 10pt; font-family: 'Courier New';">{</span></address>
<address class="MsoNormal"><span style="font-size: 10pt; font-family: 'Courier New'; color: blue;">      var</span><span style="font-size: 10pt; font-family: 'Courier New';"> copy = c.Clone&lt;<span style="color: #2b91af;">Contact</span>&gt;();</span></address>
<address class="MsoNormal"><span style="font-size: 10pt; font-family: 'Courier New'; color: blue;">      var</span><span style="font-size: 10pt; font-family: 'Courier New';"> dcopy = copy.ToDynamic();</span></address>
<address class="MsoNormal"><span style="font-size: 10pt; font-family: 'Courier New';">                </span></address>
<address class="MsoNormal"><span style="font-size: 10pt; font-family: 'Courier New';">      dcopy.Properties.Remove(<span style="color: #2b91af;">Contact</span>.<span style="color: #2b91af;">Fields</span>.ContactId);</span></address>
<address class="MsoNormal"><span style="font-size: 10pt; font-family: 'Courier New';">      targetContext.Sdk.Create(dcopy);</span></address>
<address class="MsoNormal"><span style="font-size: 10pt; font-family: 'Courier New';">}</span></address>
<p>&nbsp;</p>
<p>Create a reference to your XRM data contexts</p>
<ol>
<li>Get the records you want to copy</li>
<li>For each record
<ol>
<li>Clone it<br />
(If you skip this your lookups will be blank)</li>
<li>Create a dynamic entity</li>
<li>Remove the entityId property</li>
<ul>
<li>If you skip this you will get a &#8220;Record with this primary key already exists&#8221; error</li>
<li>If your entities are not identical on both server, also delete any properties that don’t exist on Target.</li>
</ul>
<li>Create the dynamic entity on your target server</li>
</ol>
</li>
</ol>
<p>&nbsp;</p>
<p>This is an over simplification to demonstrate the process. The implementation of the contact Contact copy will be much more complex because any related lookup entities (such as Accounts) should be copied also to the target server.</p>
<p>The code really is that simple for records where the related entities/records already exist on the target server. For example: We use a custom entity that controls the pricing of some services, our business staff staged the data on a DEV server, verified the changes and received approval then we used code similar to the snippet above to push the changes at a scheduled time.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.5to9pc.com/blog/crm-data-copy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Rich Text in MS Dynamics CRM 4.0</title>
		<link>http://www.5to9pc.com/blog/rich-text-in-ms-dynamics-crm-4-0/</link>
		<comments>http://www.5to9pc.com/blog/rich-text-in-ms-dynamics-crm-4-0/#comments</comments>
		<pubDate>Mon, 05 Mar 2012 01:42:22 +0000</pubDate>
		<dc:creator>Ivan</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[CRM]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[TinyMce]]></category>

		<guid isPermaLink="false">http://www.5to9pc.com/?p=247</guid>
		<description><![CDATA[Up front disclosure: This is not supported. Its effects can be turned off simply by disabling the form script. &#160; Microsoft Dynamics CRM 4.0 does not have the ability to store rich text. This can be useful for: Store formatted product descriptions in CRM and then display it on your website. Allow end users to <a href='http://www.5to9pc.com/blog/rich-text-in-ms-dynamics-crm-4-0/' class='excerpt-more'>[...]</a>]]></description>
			<content:encoded><![CDATA[<p><em><strong>Up front disclosure</strong>: This is not supported. Its effects can be turned off simply by disabling the form script.</em></p>
<p>&nbsp;</p>
<p>Microsoft Dynamics CRM 4.0 does not have the ability to store rich text. This can be useful for:</p>
<ul>
<li>Store formatted product descriptions in CRM and then display it on your website.</li>
<li>Allow end users to update email text in a CRM record then pull that information into a workflow. (Allows users to update email text without having access to update workflows).</li>
<li>Probably much more.</li>
</ul>
<p>We implemented this using TinyMCE. This little library replaces CRMs input boxes with its own. The OnChange even updates the CRM data field with the HTML markup.</p>
<p>&nbsp;</p>
<p><strong>Directions:</strong></p>
<ol>
<li>Get TinyMCE and jQuery and save it to your ISV folder.</li>
<li>Copy the following code to your form OnLoad script.</li>
<ul>
<li>Be sure to update the path for TinyMCE and jQuery.</li>
<li>Be sure to add your CRM field IDs to the elements property below.</li>
</ul>
</ol>
<p>&nbsp;</p>
<address class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><span style="font-size: 10pt; font-family: 'Courier New'; color: blue;">var</span><span style="font-size: 10pt; font-family: 'Courier New';"> head = document.getElementsByTagName(<span style="color: #a31515;">&#8216;head&#8217;</span>)[0];</span></address>
<address class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><span style="font-size: 10pt; font-family: 'Courier New'; color: blue;"> </span></address>
<address class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><span style="font-size: 10pt; font-family: 'Courier New'; color: blue;">var</span><span style="font-size: 10pt; font-family: 'Courier New';"> jQuery = document.createElement(<span style="color: #a31515;">&#8216;script&#8217;</span>);</span></address>
<address class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><span style="font-size: 10pt; font-family: 'Courier New';">jQuery.type = <span style="color: #a31515;">&#8216;text/javascript&#8217;</span>;</span></address>
<address class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><span style="font-size: 10pt; font-family: 'Courier New';">jQuery.src = <span style="color: #a31515;">&#8216;/isv/jquery/jquery-1.4.2.min.js&#8217;</span></span></address>
<address class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><span style="font-size: 10pt; font-family: 'Courier New';">jQuery.onreadystatechange = <span style="color: blue;">function</span>() {</span></address>
<address class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><span style="font-size: 10pt; font-family: 'Courier New';"><span>    </span><span style="color: blue;">if</span> (<span style="color: blue;">this</span>.readyState == <span style="color: #a31515;">&#8216;complete&#8217;</span> || <span style="color: blue;">this</span>.readyState == <span style="color: #a31515;">&#8216;loaded&#8217;</span>) {</span></address>
<address class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><span style="font-size: 10pt; font-family: 'Courier New';"><span>        </span><span style="color: blue;">var</span> tinyMce = document.createElement(<span style="color: #a31515;">&#8216;script&#8217;</span>);</span></address>
<address class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><span style="font-size: 10pt; font-family: 'Courier New';"><span>        </span>tinyMce.type = <span style="color: #a31515;">&#8216;text/javascript&#8217;</span>;</span></address>
<address class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><span style="font-size: 10pt; font-family: 'Courier New';"><span>        </span>tinyMce.src = <span style="color: #a31515;">&#8216;/isv/tiny_mce/tiny_mce.js?noCache=&#8217;</span> + Math.random();</span></address>
<address class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><span style="font-size: 10pt; font-family: 'Courier New';"><span>        </span>tinyMce.onreadystatechange = <span style="color: blue;">function</span>() {</span></address>
<address class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><span style="font-size: 10pt; font-family: 'Courier New';"><span>            </span><span style="color: blue;">if</span>(<span style="color: blue;">this</span>.readyState == <span style="color: #a31515;">&#8216;complete&#8217;</span> || <span style="color: blue;">this</span>.readyState == <span style="color: #a31515;">&#8216;loaded&#8217;</span>){</span></address>
<address class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><span style="font-size: 10pt; font-family: 'Courier New';"><span>                </span>initialize();</span></address>
<address class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><span style="font-size: 10pt; font-family: 'Courier New';"><span>            </span>}</span></address>
<address class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><span style="font-size: 10pt; font-family: 'Courier New';"><span>        </span>}</span></address>
<address class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><span style="font-size: 10pt; font-family: 'Courier New';"><span>        </span>head.appendChild(tinyMce);</span></address>
<address class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><span style="font-size: 10pt; font-family: 'Courier New';"><span>    </span>}</span></address>
<address class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><span style="font-size: 10pt; font-family: 'Courier New';">}</span></address>
<address class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><span style="font-size: 10pt; font-family: 'Courier New';">head.appendChild(jQuery);</span></address>
<address class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><span style="font-size: 10pt; font-family: 'Courier New';"> </span></address>
<address class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><span style="font-size: 10pt; font-family: 'Courier New';">initialize = <span style="color: blue;">function</span>() {</span></address>
<address class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><span style="font-size: 10pt; font-family: 'Courier New';"> </span></address>
<address class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><span style="font-size: 10pt; font-family: 'Courier New';"><span>    </span><span style="color: green;">//Initialize Editors</span></span></address>
<address class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><span style="font-size: 10pt; font-family: 'Courier New';"><span>    </span>tinyMCE.init({</span></address>
<address class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><span style="font-size: 10pt; font-family: 'Courier New';"><span>        </span><span style="color: green;">//General Options</span></span></address>
<address class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><span style="font-size: 10pt; font-family: 'Courier New';"><span>        </span>mode: <span style="color: #a31515;">&#8220;exact&#8221;</span>,</span></address>
<address class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><span style="font-size: 10pt; font-family: 'Courier New';"><span>        </span>elements: <span style="color: #a31515;">&#8220;my_textfield1,my_textfield2&#8243;</span>,</span></address>
<address class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><span style="font-size: 10pt; font-family: 'Courier New';"><span>        </span>theme: <span style="color: #a31515;">&#8220;advanced&#8221;</span>,</span></address>
<address class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><span style="font-size: 10pt; font-family: 'Courier New';"><span>        </span>skin: <span style="color: #a31515;">&#8220;o2k7&#8243;</span>,</span></address>
<address class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><span style="font-size: 10pt; font-family: 'Courier New';"><span>        </span>plugins: <span style="color: #a31515;">&#8220;inlinepopups&#8221;</span>,</span></address>
<address class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><span style="font-size: 10pt; font-family: 'Courier New';"> </span></address>
<address class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><span style="font-size: 10pt; font-family: 'Courier New';"><span>        </span><span style="color: green;">//Theme Options</span></span></address>
<address class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><span style="font-size: 10pt; font-family: 'Courier New';"><span>        </span>theme_advanced_buttons1: <span style="color: #a31515;">&#8220;bold,italic,underline,strikethrough,sub,sup,|,removeformat,|,justifyleft,justifycenter, justifyright,justifyfull,|,bullist,numlist,|,outdent,indent,|,link,unlink&#8221;</span>,</span></address>
<address class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><span style="font-size: 10pt; font-family: 'Courier New';"><span>        </span>theme_advanced_buttons2: <span style="color: #a31515;">&#8220;&#8221;</span>,</span></address>
<address class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><span style="font-size: 10pt; font-family: 'Courier New';"><span>        </span>theme_advanced_buttons3: <span style="color: #a31515;">&#8220;&#8221;</span>,</span></address>
<address class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><span style="font-size: 10pt; font-family: 'Courier New';"><span>        </span>theme_advanced_toolbar_location: <span style="color: #a31515;">&#8220;external&#8221;</span>,</span></address>
<address class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><span style="font-size: 10pt; font-family: 'Courier New';"><span>        </span>theme_advanced_toolbar_align: <span style="color: #a31515;">&#8220;left&#8221;</span>,</span></address>
<address class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><span style="font-size: 10pt; font-family: 'Courier New';"><span>        </span>theme_advanced_statusbar_location: <span style="color: #a31515;">&#8220;bottom&#8221;</span>,</span></address>
<address class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><span style="font-size: 10pt; font-family: 'Courier New';"><span>        </span>theme_advanced_resizing: <span style="color: blue;">false</span>,</span></address>
<address class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><span style="font-size: 10pt; font-family: 'Courier New';"><span>        </span>onchange_callback: <span style="color: blue;">function</span>(inst) {</span></address>
<address class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><span style="font-size: 10pt; font-family: 'Courier New';"><span>            </span>crmForm.all[inst.id].DataValue = inst.getBody().innerHTML;</span></address>
<address class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><span style="font-size: 10pt; font-family: 'Courier New';"><span>            </span>crmForm.all[inst.id].ForceSubmit = <span style="color: blue;">true</span>;</span></address>
<address class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><span style="font-size: 10pt; font-family: 'Courier New';"><span>        </span>}</span></address>
<address class="MsoNormal" style="margin-bottom: 0.0001pt; line-height: normal;"><span style="font-size: 10pt; font-family: 'Courier New';"><span>    </span>});</span></address>
<address class="MsoNormal"><span style="font-size: 10pt; line-height: 115%; font-family: 'Courier New';">}</span></address>
<p class="MsoNormal">Thats it! Have fun.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.5to9pc.com/blog/rich-text-in-ms-dynamics-crm-4-0/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>XML Tools for Notepad++</title>
		<link>http://www.5to9pc.com/blog/npp_xml_tools/</link>
		<comments>http://www.5to9pc.com/blog/npp_xml_tools/#comments</comments>
		<pubDate>Mon, 01 Nov 2010 12:50:20 +0000</pubDate>
		<dc:creator>Ivan</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[Notepad++]]></category>
		<category><![CDATA[xml]]></category>

		<guid isPermaLink="false">http://www.5to9pc.com/blog/npp_xml_tools/</guid>
		<description><![CDATA[Notepad++ Homepage If you are a developer on the Windows platform you may have used or encountered Notepad++, if not you should look it up. Notepad++ adds many IDE like features like syntax highlighting, code completion and macros in a lightweight package that should replace windows notepad. If you have ever complained about programs generating <a href='http://www.5to9pc.com/blog/npp_xml_tools/' class='excerpt-more'>[...]</a>]]></description>
			<content:encoded><![CDATA[<p><a title="Notepad++ Homepage" href="http://notepad-plus-plus.org/" target="_blank">Notepad++ Homepage</a></p>
<p>If you are a developer on the Windows platform you may have used or encountered Notepad++, if not you should look it up. Notepad++ adds many IDE like features like syntax highlighting, code completion and macros in a lightweight package that should replace windows notepad.</p>
<p>If you have ever complained about programs generating ugly XML you should install XML Tools for Notepad++. The tools are installed from the plugin manager and give you a whole list of tools including Pretty Print, linearize and toggle the HTML identities (&amp;lt; to &lt;, etc). I regularly copy blocks of code from SharePoint/SharePoint Designer into Notepad++ just so I can read the stuff.</p>
<p>Another great plugin is JSMin. It&#8217;s a JavaScript formatter that allows you to pretty print, linearized and minimize.</p>
<div class="zemanta-pixie"></div>
<div class="zemanta-pixie"></div>
<div class="zemanta-pixie"><em>XML is like violence, If it is not doing what you need it to do, you are not using it enough. <img src='http://www.5to9pc.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </em><img class="zemanta-pixie-img" src="http://img.zemanta.com/pixy.gif?x-id=cd3beef1-44c2-8d49-8661-ff511b74e427" alt="" /></div>
]]></content:encoded>
			<wfw:commentRss>http://www.5to9pc.com/blog/npp_xml_tools/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Domain Administration with Windows 7</title>
		<link>http://www.5to9pc.com/blog/upgradetowin7/</link>
		<comments>http://www.5to9pc.com/blog/upgradetowin7/#comments</comments>
		<pubDate>Thu, 21 Oct 2010 13:03:33 +0000</pubDate>
		<dc:creator>Ivan</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Domain Admin]]></category>
		<category><![CDATA[Dameware]]></category>
		<category><![CDATA[Exchange Server]]></category>
		<category><![CDATA[Install Notes]]></category>
		<category><![CDATA[Orion]]></category>
		<category><![CDATA[Windows 7]]></category>

		<guid isPermaLink="false">http://www.5to9pc.com/?p=159</guid>
		<description><![CDATA[I have used Windows 7 for 1.5 years at home and decided to upgrade my work computer also. My job involves domain administration and some programming. Here is a short list items that needed additional configuration to install correctly. Using Windows 7 Professional, 32 bit Active Directory Admin Tools Remote Server Administration T0ols for Windows <a href='http://www.5to9pc.com/blog/upgradetowin7/' class='excerpt-more'>[...]</a>]]></description>
			<content:encoded><![CDATA[<p>I have used Windows 7 for 1.5 years at home and decided to upgrade my work computer also. My job involves domain administration and some programming. Here is a short list items that needed additional configuration to install correctly.</p>
<p>Using Windows 7 Professional, 32 bit</p>
<p>Active Directory Admin Tools</p>
<ul>
<li><a title="Remote Server Administration Tools for Windows 7" href="http://www.microsoft.com/downloads/en/details.aspx?FamilyID=7d2f6ad7-656b-4313-a005-4e344e43997d&amp;displaylang=en" target="_blank">Remote Server Administration T0ols for Windows 7</a> &#8211; After installing you must enable the features in control panel. The download site has all the details.</li>
</ul>
<p>Exchange Server 2003 Extension for Admin Tools</p>
<ul>
<li><a title="Exchange System Manager for Windows Vista" href="http://www.microsoft.com/downloads/en/details.aspx?familyid=3403d74e-8942-421b-8738-b3664559e46f&amp;displaylang=en" target="_blank">Exchange System Manager for Windows Vista</a> &#8211; Extract the download package to a temp folder. Open cmd.exe as Administrator and run [TEMPFOLDER]\ESMVISTA.MSI /q. The /q suppresses the dialog box that tells you the install is not for your windows version.</li>
</ul>
<p>Dameware NT Utilities 5.0</p>
<ul>
<li>During the installation you will receive some errors. Ignore them and complete the installation. When the install is complete open cmd.exe as admin is run: regsvr32 /s dwstdu.dll</li>
</ul>
<p>Orion Solarwinds</p>
<ul>
<li><a title="Permanent Link: Manually installing Solarwinds Toolset Integration features on Windows 7 with Internet Explorer 8" href="http://paulelso.wordpress.com/2009/11/07/manually-installing-solarwinds-toolset-integration-features-on-windows-7-with-internet-explorer-8/" rel="bookmark">Manually installing Solarwinds Toolset Integration features on Windows 7 with Internet Explorer 8</a> &#8211; You can also disable UAC but I have become used to it.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.5to9pc.com/blog/upgradetowin7/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

