<?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>API Programming &#187; Windows Registry</title>
	<atom:link href="http://www.brangle.com/wordpress/category/tutorials/windows-registry/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.brangle.com/wordpress</link>
	<description>Just another computer weblog</description>
	<lastBuildDate>Tue, 08 Sep 2009 05:41:12 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Explained: What Does Applying Computer Settings&#8230; mean</title>
		<link>http://www.brangle.com/wordpress/2009/08/the-meaning-of-applying-computer-settings/</link>
		<comments>http://www.brangle.com/wordpress/2009/08/the-meaning-of-applying-computer-settings/#comments</comments>
		<pubDate>Tue, 11 Aug 2009 07:32:28 +0000</pubDate>
		<dc:creator>lopezg</dc:creator>
				<category><![CDATA[Windows Registry]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Registry]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.brangle.com/wordpress/?p=154</guid>
		<description><![CDATA[You know how whenever you login to your Windows box you always see a message saying "Applying computer settings..." and it can sit there for what feels like forever!!! Well it annoyed me to no end, I wanted to find out what it really meant and see if there was a way to tell me what sort of voodoo Microsoft was running on my machine.  So after a quick search I found 2 Microsoft KB articles, <a href="http://support.microsoft.com/kb/325376/" target="_blank">kb325376</a> and <a href="http://support.microsoft.com/kb/316243" target="_blank">kb316243</a>.  Now, I have a meaningful description like applying group policy, playing log off sound, etc...]]></description>
			<content:encoded><![CDATA[<p>You know how whenever you login to your Windows box you always see a message saying &#8220;Applying computer settings&#8230;&#8221; and it can sit there for what feels like forever!!! Well it annoyed me to no end, I wanted to find out what it really meant and see if there was a way to tell me what sort of voodoo Microsoft was running on my machine.  So after a quick search I found 2 Microsoft KB articles, <a href="http://support.microsoft.com/kb/325376/" target="_blank">kb325376</a> and <a href="http://support.microsoft.com/kb/316243" target="_blank">kb316243</a>.  Now, I have a meaningful description like applying group policy, playing log off sound, etc&#8230;<span id="more-154"></span></p>
<p>After running the following registry script on my machine, I can get a verbose output. </p>
<p>There are two ways to set this in the registry, Option 1</p>
<ol>
<li>Open the registry by clicking start, run, typing <span class="BRinlineCode">regedit.exe</span> then clicking ok. </li>
<li>Navigate to the following subkey
<pre><span>HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\policies\system</span></pre>
</li>
<li>Right click to create a new &quot;DWORD Value&quot;
<li>Title the new DWORD key <span class="BRinlineCode">VerboseStatus</span>
<li>Double click <span class="BRinlineCode">VerboseStatus</span> and make sure it has a &quot;Value data&quot; of 1
<li>Close the registry, you&#8217;re done.
</ol>
<p><div id="attachment_161" class="wp-caption alignleft" style="width: 310px"><a href="http://www.brangle.com/wordpress/wp-content/uploads/2009/08/registry-applying-computer-settings-verbose-output.jpg"><img src="http://www.brangle.com/wordpress/wp-content/uploads/2009/08/registry-applying-computer-settings-verbose-output-300x111.jpg" alt="Windows Registry Editor for Verbose Output" title="registry-applying-computer-settings-verbose-output" width="300" height="111" class="size-medium wp-image-161" /></a><p class="wp-caption-text">Windows Registry Editor for Verbose Output</p></div><br />
When you done, you should see your registry key look like the following image on your left.</p>
<p>Option 2 to create this setting is by copying and pasting the following code into a registry file called <i>VerboseOutput.reg</i>.</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
</pre></td><td class="code"><pre class="reg" style="font-family:monospace;"><span style="color: #0000FF;">Windows Registry Editor Version 5.00</span>
&nbsp;
<span style="color: #000000;">&#91;</span><span style="color: #800000;">HKEY_LOCAL_MACHINE</span>\SOFTWARE\Microsoft\Windows\CurrentVersion\policies\system<span style="color: #000000;">&#93;</span>
<span style="color: #0000FF;">&quot;VerboseStatus&quot;</span><span style="color: #000000;">=</span><span style="color: #0000FF;">dword:00000001</span></pre></td></tr></table></div>

<p>This registry hack can be applied to the following Microsoft boxes&#8230;</p>
<ul>
<li>Microsoft Windows XP Professional
<li>Microsoft Windows 2000 Server
<li>Microsoft Windows 2000 Advanced Server
<li>Microsoft Windows 2000 Professional Edition
<li>Microsoft Windows Server 2003, Datacenter Edition for Itanium-Based Systems
<li>Microsoft Windows Server 2003, Enterprise Edition for Itanium-based Systems
<li>Microsoft Windows Server 2003, Standard Edition (32-bit x86)
<li>Microsoft Windows Server 2003, Datacenter Edition (32-bit x86)
<li>Microsoft Windows Server 2003, Enterprise Edition (32-bit x86)
<li>Microsoft Windows Small Business Server 2003 Standard Edition
<li>Microsoft Windows Small Business Server 2003 Premium Edition
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.brangle.com/wordpress/2009/08/the-meaning-of-applying-computer-settings/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Block IE7 and/or IE8 from Automatic Updates via the Windows Registry</title>
		<link>http://www.brangle.com/wordpress/2009/08/block-ie7-andor-ie8-from-automatic-updates-via-the-windows-registry/</link>
		<comments>http://www.brangle.com/wordpress/2009/08/block-ie7-andor-ie8-from-automatic-updates-via-the-windows-registry/#comments</comments>
		<pubDate>Mon, 10 Aug 2009 01:46:49 +0000</pubDate>
		<dc:creator>lopezg</dc:creator>
				<category><![CDATA[Windows Registry]]></category>
		<category><![CDATA[Internet Explorer]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Registry]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.brangle.com/wordpress/?p=65</guid>
		<description><![CDATA[<p>Here&#8217;s a quick and simple additions for you SysAdmins out there, how to block Windows XP from automatically downloading Internet Explorer 7 and IE 8.  This is a simple addition to the Windows Registry</p>
<p>To block IE7, navigate to the following subkey (or folder)
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Internet Explorer\Setup\7.0
then create a new DWORD value
DoNotAllowIE70
and assign it a value of [...]]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s a quick and simple additions for you SysAdmins out there, how to block Windows XP from automatically downloading Internet Explorer 7 and IE 8.  This is a simple addition to the Windows Registry<span id="more-65"></span></p>
<p>To block IE7, navigate to the following subkey (or folder)<br />
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Internet Explorer\Setup\7.0<br />
then create a new DWORD value<br />
DoNotAllowIE70<br />
and assign it a value of 1</p>
<p>The procedure for IE8 is almost identical for IE8, just change the version number,<br />
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Internet Explorer\Setup\8.0<br />
then create a new DWORD value<br />
DoNotAllowIE80<br />
and assign it a value of 1</p>
<p>If you&#8217;d like to create a registry file, then just create a new text file with a .reg extension, for example IE7and8Blocker.reg once that&#8217;s created, just copy and paste the following into the registry/text file:</p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
</pre></td><td class="code"><pre class="reg" style="font-family:monospace;"><span style="color: #0000FF;">Windows Registry Editor Version 5.00</span>
&nbsp;
<span style="color: #000000;">&#91;</span><span style="color: #800000;">HKEY_LOCAL_MACHINE</span>\SOFTWARE\Microsoft\Internet Explorer\Setup\7.0<span style="color: #000000;">&#93;</span>
<span style="color: #0000FF;">&quot;DoNotAllowIE70&quot;</span><span style="color: #000000;">=</span><span style="color: #0000FF;">dword:00000001</span>
&nbsp;
<span style="color: #000000;">&#91;</span><span style="color: #800000;">HKEY_LOCAL_MACHINE</span>\SOFTWARE\Microsoft\Internet Explorer\Setup\8.0<span style="color: #000000;">&#93;</span>
<span style="color: #0000FF;">&quot;DoNotAllowIE80&quot;</span><span style="color: #000000;">=</span><span style="color: #0000FF;">dword:00000001</span></pre></td></tr></table></div>

<p>Lastly, if you don&#8217;t want to follow my examples, you can download a prepackaged Toolkit available from Microsoft for <a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=4516A6F7-5D44-482B-9DBD-869B4A90159C" target="_blank">IE7</a> and <a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=21687628-5806-4ba6-9e4e-8e224ec6dd8c&#038;displaylang=en" target="_blank">IE8</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.brangle.com/wordpress/2009/08/block-ie7-andor-ie8-from-automatic-updates-via-the-windows-registry/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
