<?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>Capi's Corner &#187; registry-hack</title>
	<atom:link href="http://www.dont-panic.cc/capi/tag/registry-hack/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.dont-panic.cc/capi</link>
	<description>Development, Network, Security, Ideas &#038; Opinions</description>
	<lastBuildDate>Sat, 10 Dec 2011 19:31:21 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>WinXP: How to Deactivate the &#8220;Windows Genuine Advantage Tool&#8221;</title>
		<link>http://www.dont-panic.cc/capi/2006/06/22/winxp-how-to-deactivate-the-windows-genuine-advantage-tool/</link>
		<comments>http://www.dont-panic.cc/capi/2006/06/22/winxp-how-to-deactivate-the-windows-genuine-advantage-tool/#comments</comments>
		<pubDate>Thu, 22 Jun 2006 18:27:44 +0000</pubDate>
		<dc:creator>Martin Carpella</dc:creator>
				<category><![CDATA[sysadmin]]></category>
		<category><![CDATA[microsoft]]></category>
		<category><![CDATA[privacy]]></category>
		<category><![CDATA[registry-hack]]></category>
		<category><![CDATA[windows]]></category>
		<category><![CDATA[xp]]></category>

		<guid isPermaLink="false">http://www.dont-panic.cc/capi/archives/44</guid>
		<description><![CDATA[To remove Microsoft&#8217;s new &#8220;Windows Genuine Advantage-Tool&#8221;, which in the current version will check the system&#8217;s license every day against a Microsoft database, simply remove the registry key HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\WindowsNT\ CurrentVersion\WinLogon\Notify\WGALogon]]></description>
			<content:encoded><![CDATA[<p>To remove Microsoft&#8217;s new &#8220;Windows Genuine Advantage-Tool&#8221;, which in the current version will check the system&#8217;s license every day against a Microsoft database, simply remove the registry key</p>
<blockquote><p><code style="text-align: left">HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\WindowsNT\ CurrentVersion\WinLogon\Notify\WGALogon</code></p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.dont-panic.cc/capi/2006/06/22/winxp-how-to-deactivate-the-windows-genuine-advantage-tool/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>VisualStudio.NET: Text-Editor Guide at 80</title>
		<link>http://www.dont-panic.cc/capi/2006/04/21/visualstudionet-text-editor-guide-at-80/</link>
		<comments>http://www.dont-panic.cc/capi/2006/04/21/visualstudionet-text-editor-guide-at-80/#comments</comments>
		<pubDate>Fri, 21 Apr 2006 12:54:55 +0000</pubDate>
		<dc:creator>Martin Carpella</dc:creator>
				<category><![CDATA[development]]></category>
		<category><![CDATA[.net]]></category>
		<category><![CDATA[registry-hack]]></category>
		<category><![CDATA[userinterface]]></category>
		<category><![CDATA[vs.net]]></category>

		<guid isPermaLink="false">http://www.dont-panic.cc/capi/archives/33</guid>
		<description><![CDATA[It is still considered good style to keep code-lines within a certain bound (e.g. 80 characters). IDEs like Eclipse offer to display a red guiding line at the chosen offset to help developers keep within this bound. By modifying the registry a similar guide can be enabled for Visual Studio 2003 / 2005. Add a [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.dont-panic.cc/capi/wp-content/uploads/2006/04/screenshot.JPG"><img align="right" style="margin-left: 10px; width: 257px; height: 121px" id="image35" alt="Guiding lines in VS.NET 2005" title="Guiding lines in VS.NET 2005" src="http://www.dont-panic.cc/capi/wp-content/uploads/2006/04/screenshot.JPG" /></a>It is still considered good style to keep code-lines within a certain bound (e.g. 80 characters). IDEs like <a href="http://www.eclipse.org">Eclipse</a> offer to display a red guiding line at the chosen offset to help developers keep within this bound.</p>
<p>By modifying the registry a similar guide can be enabled for <a href="http://msdn.microsoft.com/vstudio/">Visual Studio</a> 2003 / 2005. Add a string value <strong><code>Guides</code></strong> to the key (VS.NET 2005, VS 2003 has version 7.1)</p>
<blockquote><p><code> HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\8.0\Text Editor</code>.</p></blockquote>
<p>Set the value to</p>
<blockquote><p><code>RGB(128,0,0) 80</code></p></blockquote>
<p>To have multiple guides (like in the <a href="http://www.dont-panic.cc/capi/wp-content/uploads/2006/04/screenshot.JPG">screenshot</a>), add the additional columns space delimited, e.g.</p>
<blockquote><p><code>RGB(128,0,0) 80 100</code></p></blockquote>
<p>Ackn.: This information has been provided by <em>Hannes Pavelka</em> in Microsoft&#8217;s newsgroup <em>microsoft.public.dotnet.languages.csharp</em>, Message-ID: <em>&lt;e1jag7$qk7$02$1@news.t-online.com&gt;</em> (<a href="http://groups.google.com/group/microsoft.public.dotnet.languages.csharp/browse_thread/thread/571b30f9a9feb524/b1b7813f0a26af51">Article in Google Groups</a>):</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dont-panic.cc/capi/2006/04/21/visualstudionet-text-editor-guide-at-80/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Changing MSDE Authentication Scheme After Installation</title>
		<link>http://www.dont-panic.cc/capi/2005/09/23/changing-msde-authentication-scheme-after-installation/</link>
		<comments>http://www.dont-panic.cc/capi/2005/09/23/changing-msde-authentication-scheme-after-installation/#comments</comments>
		<pubDate>Fri, 23 Sep 2005 13:38:07 +0000</pubDate>
		<dc:creator>Martin Carpella</dc:creator>
				<category><![CDATA[development]]></category>
		<category><![CDATA[sysadmin]]></category>
		<category><![CDATA[authentication]]></category>
		<category><![CDATA[msde]]></category>
		<category><![CDATA[registry-hack]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[sql]]></category>

		<guid isPermaLink="false">http://www.dont-panic.cc/capi/?p=20</guid>
		<description><![CDATA[If you are using Microsoft SQL Server 2000 Desktop Engine (MSDE 2000) you are supposed to decide if you are going to use &#8220;integrated windows authentification&#8221; only or if you are using &#8220;mixed mode authetication&#8221;. Latter is sometimes considered less secure but if you are developing ASP.NET applications it can be easier to use a [...]]]></description>
			<content:encoded><![CDATA[<p>If you are using Microsoft SQL Server 2000 Desktop Engine (<a href="http://www.microsoft.com/sql/msde/default.mspx">MSDE 2000</a>) you are supposed to decide if you are going to use &#8220;integrated windows authentification&#8221; only or if you are using &#8220;mixed mode authetication&#8221;. Latter is sometimes considered less secure but if you are developing ASP.NET applications it can be easier to use a non-NT user for the connection.</p>
<p>If you ever tried that you are surly familiar with the &#8220;login is not associated with a trusted connection&#8221; exception when trying to access the database. Today I had to install an ASP.NET application on a server with MSDE where mixed mode authentication was not available. A quick research on the net revieled a <a href="http://www.schelian.de/Weblog/tabid/140/EntryID/111/Default.aspx">blog entry</a> indicating how to change the authentication scheme of MSDE after the installation.</p>
<ul>
<li>Stop the MSDE service</li>
<li>Search the registry for<br />
<blockquote><p>HKEY_LOCAL_MACHINE\Software\Microsoft\MSSqlserver\MSSqlServer</p></blockquote>
<p>(for unnamed instances) or</p>
<blockquote><p>HKEY_LOCAL_MACHINE\Software\Microsoft\Microsoft SQL Server\Instance Name\MSSQLServer\</p></blockquote>
<p>(for named instances)</li>
<li>Change the key <code>LoginMode</code> to value <strong>2</strong>.</li>
</ul>
<p>Unlike a comment on the page, value 0 <em>will not</em> work (at least it didn&#8217;t in my case).</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dont-panic.cc/capi/2005/09/23/changing-msde-authentication-scheme-after-installation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

