<?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>Walker News &#187; Registry</title>
	<atom:link href="http://www.walkernews.net/tag/registry/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.walkernews.net</link>
	<description>A capsule of walker's experience in life...</description>
	<lastBuildDate>Wed, 01 Sep 2010 16:18:37 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>How To Check .Net Framework Version Installed</title>
		<link>http://www.walkernews.net/2008/05/16/how-to-check-net-framework-version-installed/</link>
		<comments>http://www.walkernews.net/2008/05/16/how-to-check-net-framework-version-installed/#comments</comments>
		<pubDate>Thu, 15 May 2008 16:27:37 +0000</pubDate>
		<dc:creator>Walker</dc:creator>
				<category><![CDATA[Howto]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[.Net]]></category>
		<category><![CDATA[Aaron Stebner]]></category>
		<category><![CDATA[Compiler]]></category>
		<category><![CDATA[Framework]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Registry]]></category>
		<category><![CDATA[User Agent String]]></category>
		<category><![CDATA[Vista SP1]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[Windows Vista]]></category>

		<guid isPermaLink="false">http://www.walkernews.net/?p=723</guid>
		<description><![CDATA[Have you already install the latest .Net framework runtime? How do you check the .Net framework that installed on your Windows machine?]]></description>
			<content:encoded><![CDATA[Microsoft .Net 3.5 framework is in RTM version since Nov 2007. While not every Windows machines require .Net framework to run, but sooner or later you may find some programs failed because of no such framework installed or otherwise the latest .Net 3.5 framework is not found.<br />
<span id="more-723"></span><br />
In this case, you might wonder what .Net framework version you have or do you have the so-called latest .Net 3.5 framework?<br />

OK, general end users can use either one of these ways to <a href="http://www.walkernews.net/2007/07/30/how-to-verify-dot-net-framework-version/" title="How to verify .Net framework version that installed in Windows?" rel="bookmark">check the .Net framework version</a>:<br />
<ul>
<li>Query the <a href="http://www.walkernews.net/2007/07/04/what-is-that-user-agent-string-used-for/" title="Why is that User Agent String used for?" rel="bookmark">User Agent String</a> of <a href="http://www.walkernews.net/2008/03/17/where-is-ie7-cache-folder/" title="Where is IE7 cache folder that cache your YouTube video clips?" rel="bookmark">Internet Explorer</a> web browser. This is the easier way, I think, as every Windows bundled with IE! Although you need to remember this simple, one line JavaScript:
<br /><code>javascript:alert(navigator.userAgent)</code> <br />
<br />Copy and paste that line of JavaScript code to IE Address bar and press ENTER key, you will see a pop-up dialog box with similar content as this:<br />
<br /><img src="http://www.walkernews.net/wp-content/uploads/2008/05/ie-user-agent-string-a.jpg" alt="Using IE User Agent String to check .Net framework version installed." title="Using IE User Agent String to check .Net framework version installed." width="414" height="153" class="alignnone size-full wp-image-724" /><br />
<br />As shown, the IE 7 <a href="http://www.walkernews.net/2007/07/05/how-to-change-user-agent-string/" title="How to change the User Agent String?" rel="bookmark">User Agent String</a> shows my <a href="http://www.walkernews.net/tag/windows-vista/" title="All posts related to Windows Vista in WalkerNews.net" rel="bookmark">Windows Vista</a> (Windows NT 6.0) has installed .Net 2.0 (.Net CLR 2.0.50727), .Net 3.0 (.Net CLR 3.0.04506) as well as the latest .Net 3.5 framework (.Net CLR 3.5.21022).<br />
<br />Please take note that that <a href="http://www.walkernews.net/2007/07/16/simple-javascript-extract-login-form-password/" title="Simple JavaScript code used to extract login form password behind the asterisks" rel="bookmark">JavaScript code</a> can be used in Firefox or Opera web browser to query their User Agent String too (but only the IE will report .Net framework version in its User Agent String).<br />
&nbsp;</li>
<li>Navigate to this <a href="http://www.walkernews.net/tag/registry/" title="All posts related to Windows Registry in WalkerNews.net" rel="bookmark">Windows Registry</a> path:
<pre>HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\NET Framework Setup\NDP</pre>
<br />The major version number of each .Net framework releases installed can be found at this Registry path. Click the major version number key and there is a string value called &#8220;version&#8221; on the right-pane that reports the full version number of that .Net framework:<br />
<img src="http://www.walkernews.net/wp-content/uploads/2008/05/registry-dot-net-version-a.jpg" alt="Windows Registry that reports .Net version installed in Windows" title="Windows Registry that reports .Net version installed in Windows" width="444" height="183" class="alignnone size-full wp-image-727" /><br />
&nbsp;</li>
<li>Navigate to the Registry path that keeps the IE User Agent String:
<pre>HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Internet Settings\5.0\User Agent\Post Platform</pre>
<br />If you think this Registry key path is easier to remember than the shorter, one-line JavaScript code that query the User Agent String, then this could be your answer.<br />
&nbsp;</li>
<li>For those who have installed the latest .Net framework SDK, any of the .Net compilers report the .Net framework version at <a href="http://www.walkernews.net/tag/command-prompt/" title="All posts related to Windows Command Prompt in WalkerNews.net" rel="bookmark">Command Prompt window</a> as well.
<br />For example, enter this C# command line compiler <code>csc</code> at Command Prompt window shows a similar header message as this:<br />
<br /><img src="http://www.walkernews.net/wp-content/uploads/2008/05/command-prompt-dot-net-version-a.jpg" alt=".Net SDK C# command line compiler shows the .Net framework version installed" title=".Net SDK C# command line compiler shows the .Net framework version installed" width="463" height="168" class="alignnone size-full wp-image-726" /></li>
</ul>
<br />If you&#8217;re programmer who is going to develop a simple .Net framework version verifier, here are two options, but only second option seems to be better:<br />

<ul>
<li>Environment.Version property of .Net framework. For example, this simple C# source code can be compiled to a .Net console program that shows .Net framework version installed:
<pre>using System;

class Version
{
  public static void Main()
  {
    Console.WriteLine();
    Console.WriteLine(".Net Framework Version {0}",
       Environment.Version.ToString());
  }
}</pre>
<br />You don&#8217;t have to install Visual Studio except the .Net framework SDK (which package all the .Net command line compilers, including the C# compiler). Thus, to compile the C# code in a source file called sample.cs with C# command line compiler, just enter this at Command Prompt:<br />
<br /><code>csc sample.cs</code></li>
<li><span style="color:#FF6666;font-weight:bold;">Limitation of Environment.Version property</span> &#8211; only one of the multiple .Net framework versions installed will be reported. I.e. if you&#8217;ve .Net 2.0, .Net 3.0 and .Net 3.5 version installed, Environment.Version reports only .Net 2.0 framework.
<br />To overcome this problem, Aaron Stebner&#8217;s <a href="http://blogs.msdn.com/astebner/archive/2006/08/02/687233.aspx" title=".Net C++ source code to check .Net framework version" target="_blank" rel="bookmark">.Net version checker source code</a> is better choice, where the programming approach is to query the Windows Registry keys and also call the mscoree.dll exported APIs to report the presence of all .NET Framework versions.<br />
<br /><span class="subhead">Aaron Stebner .Net version checker source code</span><br />
<br /><a href="http://astebner.sts.winisp.net/Tools/detectfx_new.cpp.txt" target="_blank" rel="nofollow">Download</a> the .Net version checker source code and compile the code with Visual Studio 2005 or Visual C++ 2005 Express edition, with the present of .Net framework 2.0 SDK or mscoree.h from that version of the SDK.</li>
</ul>
<br />P/S: To direct download the latest .Net framework 3.5 full package (197 MB), you may find it at <a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=333325FD-AE52-4E35-B531-508D977D32A6&#038;displaylang=en" target="_blank" rel="nofollow">Microsoft Download Center</a>, or just <a href="http://download.microsoft.com/download/6/0/f/60fc5854-3cb8-4892-b6db-bd4f42510f28/dotnetfx35.exe" rel="nofollow" target="_blank">click here to direct download</a> from genuine Microsoft server.<br />

<ul class="related_post"><li><a href="http://www.walkernews.net/2007/07/30/how-to-verify-dot-net-framework-version/" title="How To Verify .Net Framework Version">How To Verify .Net Framework Version</a></li><li><a href="http://www.walkernews.net/2007/07/31/winfx-is-not-really-dot-net-framework-3/" title="WinFX Is Not Really .Net Framework 3">WinFX Is Not Really .Net Framework 3</a></li><li><a href="http://www.walkernews.net/2008/06/30/how-to-extract-audio-music-from-a-video-clip-in-windows-movie-maker/" title="How To Extract Audio Music From A Video Clip In Windows Movie Maker">How To Extract Audio Music From A Video Clip In Windows Movie Maker</a></li><li><a href="http://www.walkernews.net/2008/06/12/how-to-cut-mp3-as-mobile-phone-ringtone/" title="How To Cut MP3 As Mobile Phone Ringtone">How To Cut MP3 As Mobile Phone Ringtone</a></li><li><a href="http://www.walkernews.net/2008/05/13/direct-download-windows-vista-sp1-and-xp-sp3/" title="Direct Download Windows Vista SP1 and XP SP3">Direct Download Windows Vista SP1 and XP SP3</a></li><li><a href="http://www.walkernews.net/2008/05/12/direct-download-vista-sp1-mui-pack-and-vista-ultimate-extras/" title="Direct Download Vista SP1 MUI Pack And Vista Ultimate Extras">Direct Download Vista SP1 MUI Pack And Vista Ultimate Extras</a></li><li><a href="http://www.walkernews.net/2008/05/11/windows-vista-mui-pack-vs-windows-vista-system-locale/" title="Windows Vista MUI Pack VS Windows Vista System Locale">Windows Vista MUI Pack VS Windows Vista System Locale</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.walkernews.net/2008/05/16/how-to-check-net-framework-version-installed/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>Registry Used To Print Vista Version On Desktop</title>
		<link>http://www.walkernews.net/2008/04/16/registry-used-to-print-vista-version-on-desktop/</link>
		<comments>http://www.walkernews.net/2008/04/16/registry-used-to-print-vista-version-on-desktop/#comments</comments>
		<pubDate>Tue, 15 Apr 2008 16:32:36 +0000</pubDate>
		<dc:creator>Walker</dc:creator>
				<category><![CDATA[Windows Vista]]></category>
		<category><![CDATA[Howto]]></category>
		<category><![CDATA[Reg.exe]]></category>
		<category><![CDATA[Registry]]></category>
		<category><![CDATA[Tip]]></category>
		<category><![CDATA[Trick]]></category>
		<category><![CDATA[Vista SP1]]></category>
		<category><![CDATA[Windows Registry]]></category>

		<guid isPermaLink="false">http://www.walkernews.net/2008/04/16/registry-used-to-print-vista-version-on-desktop/</guid>
		<description><![CDATA[How to get automatically show Windows Vista version or build number on Desktop?
]]></description>
			<content:encoded><![CDATA[This is just another little Vista trick and involves a bit of <a href="http://www.walkernews.net/tag/Registry/" title="All posts related to Windows Registry on WalkerNews.net" rel="bookmark">Windows Registry</a> editing work. Execute this trick will not bring much benefit to the Vista system, except for just showing the Windows Vista version (precisely, the Vista built number) on the Desktop, automatically.<br />
<span id="more-708"></span><br />
Yes, whenever the Vista build number changed, it&#8217;ll be automatically updated on Vista Desktop, at the bottom-right corner.<br />

Since this little option is available, I think it worth to know (just in case, you might need this feature later).<br />
<br /><img src='http://www.walkernews.net/wp-content/uploads/2008/04/vista-sp1-version-on-desktop.jpg' alt='Windows Registry used to automatically print Vista version or build number on Desktop.' /><br />
<br />The Vista Build Number printed on Desktop has automatically changed from Windows Vista Build 6000 to Windows Vista Build 6001, after installing <a href="http://www.walkernews.net/2008/04/12/stro-activator-still-works-in-vista-sp1/" title="STRO Activator still works in Vista SP1?" rel="bookmark">Vista SP1</a> successfully.<br />
<br /><span style="font-weight:bold;">How to automatically show Windows Vista version or build number on Desktop?</span><br />
<br /><span style="text-decoration:underline;">Using Command Line <a href="http://www.walkernews.net/2007/08/08/configure-windows-registry-in-command-prompt/" title="How to configure Windows Vista Registry from command line?" rel="bookmark">Registry Console Tool</a> (Reg.exe)</span><br />
<br />Copy this Vista command line, paste it to the Command Prompt window and press ENTER key.<br />
<pre>reg add "HKCU\Control Panel\Desktop" /v PaintDesktopVersion /t REG_DWORD /d 1 /f</pre>
<br />You don&#8217;t have to open an <a href="http://www.walkernews.net/2007/05/21/open-command-prompt-here-with-elevated-privilege/" title="How to open an elevated Vista Command Prompt for administrative privileges?" rel="bookmark">elevated Command Prompt</a> window (means that this Registry key can be added to non-Administrator account&#8217;s Desktop too).<br />
<br />However, I recommend you to enable the <a href="http://www.walkernews.net/2007/06/27/copy-and-paste-text-in-command-prompt/" title="How to perform copy and paste function in Vista Command Prompt?" rel="bookmark">Command Prompt copy and paste feature</a> for this operation.<br />
<br />To disable the auto-printing of Vista Build Number on Desktop, just delete the PaintDesktopVersion Registry Value, i.e. execute this Reg.exe command line for deletion:<br />
<pre>reg delete "HKCU\Control Panel\Desktop" /v PaintDesktopVersion /f</pre>
<br /><span style="text-decoration:underline;">Using Windows Registry Editor (Regedit.exe)</span><br />
<br />Click the Vista Orb (Vista Start button), type <code>regedit</code> in the <em><a href="http://www.walkernews.net/2007/07/09/vista-instant-search-vs-windows-run-command/" title="Vista Instant Search vs legacy Run dialog" rel="bookmark">Start Search</a></em> textbox and click the Regedit.exe link shown in Programs list.<br />
<br />Then, browse to this Registry key path:<br />
<pre>HKEY_CURRENT_USER > Control Panel > Desktop</pre>
<br />While at the Desktop Registry key, looks for the <strong>PaintDesktopVersion</strong> and set its value to become <strong>1</strong>.<br />
<br />If the PaintDesktopVersion Registry is not exists, create a 32-bit DWORD Value as PaintDesktopVersion and set its value to 1.<br />

<ul class="related_post"><li><a href="http://www.walkernews.net/2009/05/29/how-to-disable-or-enable-user-switching-in-windows-vista/" title="How To Disable Or Enable User Switching In Windows Vista?">How To Disable Or Enable User Switching In Windows Vista?</a></li><li><a href="http://www.walkernews.net/2008/05/11/how-to-keep-inactive-ssh-session-from-disconnected/" title="How To Keep Inactive SSH Session From Disconnected">How To Keep Inactive SSH Session From Disconnected</a></li><li><a href="http://www.walkernews.net/2008/04/13/how-to-add-an-oem-logo-to-vista-system-properties/" title="How To Add An OEM Logo To Vista System Properties">How To Add An OEM Logo To Vista System Properties</a></li><li><a href="http://www.walkernews.net/2009/05/31/using-gpedit-to-enable-or-disable-switch-user-in-vista-sp2/" title="Using gpedit To Enable Or Disable Switch User In Vista SP2">Using gpedit To Enable Or Disable Switch User In Vista SP2</a></li><li><a href="http://www.walkernews.net/2009/05/22/how-to-configure-windows-update-proxy-server-settings-in-windows-vista-sp1/" title="How To Configure Windows Update Proxy Server Settings In Windows Vista SP1?">How To Configure Windows Update Proxy Server Settings In Windows Vista SP1?</a></li><li><a href="http://www.walkernews.net/2009/05/14/how-to-fix-windows-update-error-80072efd-in-vista-sp1/" title="How To Fix Windows Update Error 80072EFD In Vista SP1?">How To Fix Windows Update Error 80072EFD In Vista SP1?</a></li><li><a href="http://www.walkernews.net/2009/05/03/how-to-disable-keyboard-power-button/" title="How To Disable Keyboard Power Button?">How To Disable Keyboard Power Button?</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.walkernews.net/2008/04/16/registry-used-to-print-vista-version-on-desktop/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How To Add An OEM Logo To Vista System Properties</title>
		<link>http://www.walkernews.net/2008/04/13/how-to-add-an-oem-logo-to-vista-system-properties/</link>
		<comments>http://www.walkernews.net/2008/04/13/how-to-add-an-oem-logo-to-vista-system-properties/#comments</comments>
		<pubDate>Sat, 12 Apr 2008 18:27:54 +0000</pubDate>
		<dc:creator>Walker</dc:creator>
				<category><![CDATA[Howto]]></category>
		<category><![CDATA[Windows Vista]]></category>
		<category><![CDATA[Guide]]></category>
		<category><![CDATA[Logo]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[OEM]]></category>
		<category><![CDATA[Registry]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[Vista SP1]]></category>

		<guid isPermaLink="false">http://www.walkernews.net/2008/04/13/how-to-add-an-oem-logo-to-vista-system-properties/</guid>
		<description><![CDATA[How could you add an OEM Logo to the Windows Vista SP1 System Properties window?]]></description>
			<content:encoded><![CDATA[I believe that some of you&#8217;ve came across an OEM hardware logo displayed on Windows System Properties window, particularly on those branded workstations / laptops.<br />
<span id="more-698"></span><br />
Of course, being able to display an OEM logo in Windows System Properties has little or zero benefits to most general users (except for advertisement by hardware manufacturers)<br />

However, you might just want to have some fun, to impress your superior, to show off a little Windows skills, etc, then you might wanted to know how to add a picture or logo in Windows Vista SP1 System Properties window.<br />
<br />For demo, this screenshot shows how the OEM logo and related information are shown in Vista SP1 System Properties window (specifically, this window is just known as System window, that you could open up with Windows + Pause <a href="http://www.walkernews.net/2007/05/16/list-of-windows-vista-keyboard-shortcut-or-hotkey/" title="A list of Windows Vista Hotkeys or keyboard shortcuts." rel="bookmark">hotkey</a> or right-click Computer follow by clicking Properties menu):<br />
<br /><img src='http://www.walkernews.net/wp-content/uploads/2008/04/vista-sp1-logo-a.jpg' alt='How to add an OEM logo and related information to Windows Vista SP1 System Properties window' /><br />
<br /><span style="font-weight:bold;">How to add an OEM logo or image to Vista SP1 System Properties window?</span><br />
<br />Prepare your own OEM logo or image, cut / crop it to 120&#215;120 pixel and save it as BMP file format (a.k.a. Bitmap file format).<br />
<br />Next, save this 120&#215;120 BMP file to %windir%\system32 folder as OEMLogo.bmp, i.e.<br />
<pre>copy YourLogo.bmp %windir%\system32\OEMLogo.bmp</pre>
<br />Now, open up <a href="http://www.walkernews.net/2007/08/08/configure-windows-registry-in-command-prompt/" title="Using the command line Windows Registry Editor to manipulate Windows Registry." rel="bookmark">Windows Registry Editor</a>,i.e.<br />
<ol>
<li>Click the Vista Orb (Vista Start button)</li>
<li>Type <code>regedit</code> on the <em><a href="http://www.walkernews.net/2007/07/09/vista-instant-search-vs-windows-run-command/" title="Windows Vista instant search vs the traditional Windows Run dialog box" rel="bookmark">Start Search</a></em> textbox and press ENTER</li>
<li>Click the regedit.exe link shown in the Program list</li>
</ol>
<br />Browse to this Registry path<br />
<pre>HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\OEMInformation</pre>
<br />(If you can&#8217;t find the OEMInformation key, right-click the CurrentVersion key, select New followed by Key option and name the new Key as OEMInformation)<br />
<br />While at the OEMInformation key, right-click on the right-pane, select New followed by String Value to create these Registries as &#8220;String Value&#8221; type:<br />
<br /><code>Logo</code> &#8211; the full path of OEMLogo.bmp, i.e. <code>C:\windows\system32\OEMLogo.bmp</code><br />
<code>Manufacturer</code><br />
<code>Model</code><br />
<code>SupportURL</code><br />
<code>SupportHours</code><br />
<code>SupportPhone</code><br />
<br />Double-click each of those Registries and enter the text descriptions, as show in this screenshot:<br />
<br /><img src='http://www.walkernews.net/wp-content/uploads/2008/04/vista-oem-logo-registry-a.jpg' alt='Windows Registry keys that show OEM Logo and related information on Vista SP1 System Properties window' /><br />

<ul class="related_post"><li><a href="http://www.walkernews.net/2008/06/12/how-to-cut-mp3-as-mobile-phone-ringtone/" title="How To Cut MP3 As Mobile Phone Ringtone">How To Cut MP3 As Mobile Phone Ringtone</a></li><li><a href="http://www.walkernews.net/2008/11/12/how-to-fix-ie-7-print-error-in-windows-vista/" title="How To Fix IE 7 Print Error In Windows Vista?">How To Fix IE 7 Print Error In Windows Vista?</a></li><li><a href="http://www.walkernews.net/2008/10/29/windows-vista-multiple-networks-wireless-to-public-wifi-and-wired-to-private-lan/" title="Windows Vista Multiple Networks: Wireless To Public WIFI and Wired To Private LAN">Windows Vista Multiple Networks: Wireless To Public WIFI and Wired To Private LAN</a></li><li><a href="http://www.walkernews.net/2008/10/25/how-to-use-infrared-to-send-files-from-windows-vista-to-nokia-n73/" title="How To Use Infrared To Send Files From Windows Vista To Nokia N73?">How To Use Infrared To Send Files From Windows Vista To Nokia N73?</a></li><li><a href="http://www.walkernews.net/2008/06/30/how-to-extract-audio-music-from-a-video-clip-in-windows-movie-maker/" title="How To Extract Audio Music From A Video Clip In Windows Movie Maker">How To Extract Audio Music From A Video Clip In Windows Movie Maker</a></li><li><a href="http://www.walkernews.net/2008/06/18/how-to-check-windows-last-boot-up-time/" title="How To Check Windows Last Boot Up Time">How To Check Windows Last Boot Up Time</a></li><li><a href="http://www.walkernews.net/2008/06/09/configure-secured-private-key-for-password-less-ssh-login/" title="Configure Secured Private Key For Password-less SSH Login">Configure Secured Private Key For Password-less SSH Login</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.walkernews.net/2008/04/13/how-to-add-an-oem-logo-to-vista-system-properties/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>How To Change IE 7 Window Title Text</title>
		<link>http://www.walkernews.net/2007/09/05/how-to-change-ie-7-window-title-text/</link>
		<comments>http://www.walkernews.net/2007/09/05/how-to-change-ie-7-window-title-text/#comments</comments>
		<pubDate>Tue, 04 Sep 2007 16:49:37 +0000</pubDate>
		<dc:creator>Walker</dc:creator>
				<category><![CDATA[Howto]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[IE]]></category>
		<category><![CDATA[Internet Explorer]]></category>
		<category><![CDATA[Registry]]></category>
		<category><![CDATA[Window Title]]></category>

		<guid isPermaLink="false">http://www.walkernews.net/2007/09/05/how-to-change-ie-7-window-title-text/</guid>
		<description><![CDATA[How to change or replace IE 7 window title text?]]></description>
			<content:encoded><![CDATA[<img style="float:right;margin:0 0 1px 10px;" src='http://www.walkernews.net/wp-content/uploads/2007/09/change-ie-title-text.jpg' alt='How to customize or change IE 7 window title text to the company name or something else.' /></a>Ever thinking of customize or change the IE 7 window title text, i.e. changing &#8220;Windows Internet Explorer&#8221; to something else?<br />
<span id="more-481"></span><br />
E.g, replace IE window title text with the company name to impress customers who are using the Internet kiosks.<br />
<br />Or better still, impress your love with his/her name written on IE window title!<br />

<strong>How to change or customize IE 7 window title text?</strong><br />
<br />Here are 3 ways to do so, and each of them are applicable to <a href="http://www.walkernews.net/2007/05/23/how-to-relocate-ie7-feed-folder-in-windows-vista/" title="How to relocate IE 7 Feed folder to other location?" rel="bookmark">Internet Explorer</a> web browser running in Windows (if not Windows, what else?).<br />
<br /><strong>Double-click Windows Registry file</strong><br />
<br />Copy these lines of <a href="http://www.walkernews.net/2007/07/27/add-copy-to-or-move-to-context-menu-in-vista/" title="Windows Registry hack to add a Copy To Folder or Move To Folder command shortcut in Windows Context menu" rel="bookmark">Windows Registry</a> file content to Notepad and save it with .reg file extension (Windows Registry file), e.g. <em>Change-IE-Window-Title.reg</em> in my case. Remember to replace &#8220;<a href="http://www.walkernews.net/" title="Walker News - A capsule of experience in life!" rel="bookmark">Walker News</a>&#8221; with yours own text!<br />
<pre>Windows Registry Editor Version 5.00

[HKEY_CURRENT_USER&#92;Software&#92;Microsoft&#92;Internet Explorer&#92;Main]
"Window Title"="Walker News"</pre>
<br />Double click the <a href="http://www.walkernews.net/2007/07/23/tweak-windows-vista-bubbles-screen-saver/" title="Hidden Windows Registry keys to tweak Vista Bubbles screen saver." rel="bookmark">Windows Registry</a> file to customize or change the <a href="http://www.walkernews.net/2007/05/25/office-2007-validation-failed-by-ie7-protected-mode/" title="Office 2007 WGA failed in Windows Vista IE7" rel="bookmark">IE 7</a> title text.<br />
<br />If the <a href="http://www.walkernews.net/2007/06/27/how-to-tweak-or-disable-uac-in-vista/" title="How to tweak or disable Windows Vista UAC function" rel="bookmark">Vista UAC is not tweaked or disabled</a>, a Consent UI dialog box will pop up to ask for acknowledgement. Follow by is the Registry Editor’s warning message that said something like &#8220;Adding information can unintentionally change or delete values and cause components to stop working correctly.&#8221;<br />
<br /><img src='http://www.walkernews.net/wp-content/uploads/2007/09/change-ie-window-title.jpg' alt='Edit Windows Registry window title key to customize IE window title text.' /><br />
<br />Just click YES button to proceed. Subsequently, open a new <a href="http://www.walkernews.net/2007/07/05/how-to-change-user-agent-string/" title="How to change IE7 web browser User Agent String" rel="bookmark">IE 7 browser</a> and the window title text should have changed from &#8220;<a href="http://www.walkernews.net/2007/07/16/simple-javascript-extract-login-form-password/" title="A simple JavaScript used to extract or recover the password behind asterisk in web browser login form." rel="bookmark">Windows Internet Explorer</a>&#8221; to your customized text!<br />
<br /><strong><a href="http://www.walkernews.net/2007/08/08/configure-windows-registry-in-command-prompt/" title="How to configure or repair Windows Registry in command prompt?" rel="bookmark">Registry Console Tool</a> or Reg.exe command</strong><br />
<br />Copy this line of Reg.exe command text to Windows Vista <a href="http://www.walkernews.net/2007/05/21/open-command-prompt-here-with-elevated-privilege/" title="How to open an elevated command prompt window in Windows Vista?" rel="bookmark">elevated Command Prompt window</a> and press ENTER key:<br />
(refer to &#8220;<a href="http://www.walkernews.net/2007/06/27/copy-and-paste-text-in-command-prompt/" title="How to copy and paste text in Command Prompt window?" rel="bookmark">How to copy and paste text in Command Window&#8221;</a>)<br />
<pre>REG ADD "HKCU&#92;Software&#92;Microsoft&#92;Internet Explorer&#92;Main" /v "Window Title" /t REG_SZ /d "Walker News" /f</pre>
<br /><strong>Manually edit with Windows Registry Editor</strong><br />
<br />1) Type <code>regedit</code> in <a href="http://www.walkernews.net/2007/07/09/vista-instant-search-vs-windows-run-command/" title="How to use Windows Vista Instant Search?" rel="bookmark">Vista Instant Search</a> and press ENTER to open the Windows Registry Editor.<br />
<br />2) Navigate the tree-structure at left pane with this path<br />
<pre>HKEY_Current_User&#92;Software&#92;Microsoft&#92;Internet Explorer&#92;Main</pre>
<br />3) Look for &#8220;Window Title&#8221; Registry key at the right pane. Create a string value type of Registry key and name it as &#8220;Window Title&#8221; if it isn&#8217;t there.<br />
<br />4) Double-click the &#8220;Window Title&#8221; Registry key and enter the customize text that will appears in IE window title.<br />

<ul class="related_post"><li><a href="http://www.walkernews.net/2007/02/27/restore-ie-7-menu-bar-to-the-top/" title="Restore IE 7 Menu Bar To The Top">Restore IE 7 Menu Bar To The Top</a></li><li><a href="http://www.walkernews.net/2010/02/22/how-to-uninstall-ie8-in-windows-7/" title="How To Uninstall IE8 In Windows 7?">How To Uninstall IE8 In Windows 7?</a></li><li><a href="http://www.walkernews.net/2009/12/10/ie8-not-display-gmail-inline-image/" title="IE8 Not Display Gmail Inline Image">IE8 Not Display Gmail Inline Image</a></li><li><a href="http://www.walkernews.net/2009/11/09/disable-java-plug-in-that-causes-ie-8-tab-slow-opening-problem/" title="Disable Java Plug-in That Causes IE 8 Tab Slow Opening Problem">Disable Java Plug-in That Causes IE 8 Tab Slow Opening Problem</a></li><li><a href="http://www.walkernews.net/2009/05/03/how-to-uninstall-ie8/" title="How To Uninstall IE8?">How To Uninstall IE8?</a></li><li><a href="http://www.walkernews.net/2009/04/09/ie8-groups-tabs-of-same-domain-with-colour/" title="IE8 Groups Tabs Of Same Domain With Colour">IE8 Groups Tabs Of Same Domain With Colour</a></li><li><a href="http://www.walkernews.net/2009/04/02/alternative-ie8-nomerge-option-to-login-multiple-web-accounts/" title="Alternative IE8 nomerge Option To Login Multiple Web Accounts">Alternative IE8 nomerge Option To Login Multiple Web Accounts</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.walkernews.net/2007/09/05/how-to-change-ie-7-window-title-text/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How To Fix PowerPoint Slide Show Crash Problem</title>
		<link>http://www.walkernews.net/2007/08/13/how-to-fix-powerpoint-slide-show-crash-problem/</link>
		<comments>http://www.walkernews.net/2007/08/13/how-to-fix-powerpoint-slide-show-crash-problem/#comments</comments>
		<pubDate>Mon, 13 Aug 2007 07:10:16 +0000</pubDate>
		<dc:creator>Walker</dc:creator>
				<category><![CDATA[Howto]]></category>
		<category><![CDATA[Windows Vista]]></category>
		<category><![CDATA[Codec]]></category>
		<category><![CDATA[MSACM]]></category>
		<category><![CDATA[Office 2007]]></category>
		<category><![CDATA[OneNote]]></category>
		<category><![CDATA[Outlook]]></category>
		<category><![CDATA[PowerPoint]]></category>
		<category><![CDATA[Registry]]></category>
		<category><![CDATA[Slide Show]]></category>
		<category><![CDATA[VOXACM160]]></category>
		<category><![CDATA[Voxware]]></category>

		<guid isPermaLink="false">http://www.walkernews.net/2007/08/13/how-to-fix-powerpoint-slide-show-crash-problem/</guid>
		<description><![CDATA[How to resolve Office 2007 application hangs up problem, such as PowerPoint 2007 slide show with sound effects or Outlook 2007 Reminder, OneNote Option, etc.]]></description>
			<content:encoded><![CDATA[My PowerPoint 2007 running in <a href="http://www.walkernews.net/2007/06/17/how-to-run-chinese-program-in-vista-ultimate/" title="Windows Vista Ultimate supports non-Unicode applications - so, there is no problem of rendering Chinese characters in Windows Media Player 11 or even in the Command Prompt window." rel="bookmark">Windows Vista Ultimate</a> keeps on hang up whenever I try to open a PowerPoint Slide Show. After couple of attempts, the <strong>Problem Reports And Solutions</strong> program pop up a temporarily <a href="http://www.walkernews.net/2007/06/27/how-to-tweak-or-disable-uac-in-vista/" title="How many ways to disable or tweak Vista UAC, including Registry trick from command line." rel="bookmark">Registry trick</a> for the application hang up problem.<br />
<span id="more-429"></span><br />
In the Event Viewer, the Application Log recorded the error messages that said [ Faulting application POWERPNT.EXE, version 12.0.4518.1014, time stamp 0x45428035, faulting module ntdll.dll, version 6.0.6000.16386, time stamp 0x4549bdc9, exception code 0xc0000374, fault offset 0x000af1c9, process id 0x120c, application start time 0x01c7dd01e9f43530 ].<br />

Before committing the temporarily <a href="http://www.walkernews.net/2007/05/21/open-command-prompt-here-with-elevated-privilege/" title="Registry trick to add a Open Command Window Here shortcut with elevated privilege." rel="bookmark">Registry trick</a>, I went to ask Google for similar problems and solutions. The search results seem to suggest that the hang up was likely caused by Voxware MetaSound Audio Codec compatibility issue in <a href="http://www.walkernews.net/2007/07/30/setup-remote-desktop-port-forwarding/" title="How to setup or configure Windows Remote Desktop port forwarding over SSH protocol with Putty SSH client?" rel="bookmark">Windows Vista</a>.<br />
<br />According to <a href="http://www.microsoft.com/resources/documentation/windows/xp/all/proddocs/en-us/compressing_sound_files.mspx?pf=true" title="The list of common audio codecs supported by Windows" target="_blank" rel="bookmark">Windows XP Documentation</a>, Voxware MetaSound Audio Codec is one of the <a href="http://www.walkernews.net/2007/04/07/ultimate-windows-vista-codec-pack-storm-codec/" title="Storm Codec is one of the Windows Vista compatible codec pack that contains over 180 multimedia codecs." rel="bookmark">common audio codecs</a> supported by Windows (officially). In this case, a third party Voxware audio codec installation might have caused the compatibility problem.<br />
<br />With this codec problem, you&#8217;ll likely encounter PowerPoint 2007 hangs up when opening Slide Show with sound effects, Outlook 2007 crash when the Outlook Reminder tool play a sound alert, OneNote close and exit when access to Option menu, etc.<br />
<br /><strong>How to temporarily fix or resolve Voxware Audio Codec compatibility issue or the Office 2007 application hang up problem?</strong><br />
<br />As per Windows Vista bundled Problem Reports And Solutions program, the problem was caused by a compatibility problem between earlier version of Microsoft Office and <a href="http://www.walkernews.net/2007/05/25/office-2007-validation-failed-by-ie7-protected-mode/" title="How to resolve office 2007 WGA validation failure in IE7 when trying to download Office 2007 Add-in" rel="bookmark">Microsoft Office 2007</a>. But, the <a href="http://www.walkernews.net/2007/05/13/replace-windows-vista-oem-logo-with-company-logo/" title="Registry trick to replace the Vista OEM logo with your own picture?" rel="bookmark">Registry trick</a> is obviously to disable the Voxware audio codec from loading in <a href="http://www.walkernews.net/2007/03/13/optimize-windows-vista-sata-driver-performance/" title="How to improve Vista I/O performance by tuning SATA driver?" rel="bookmark">Windows Vista</a>.<br />
<ol>
<li>Press the <a href="http://www.walkernews.net/2007/05/16/list-of-windows-vista-keyboard-shortcut-or-hotkey/" title="Complete list of Windows Vista keyboard shortcuts key." rel="bookmark">Windows shortcut key</a> or click the Vista Orb to bring up Vista Start menu,<br />
&nbsp;</li>
<li>Type <code>regedit</code> in the <em><a href="http://www.walkernews.net/2007/07/09/vista-instant-search-vs-windows-run-command/" title="What are the attractive features of using Vista Instant Search to locate piece of data in hard disk?" rel="bookmark">Start Search</a></em> text box and press ENTER key to bring up Windows Registry Editor,<br />
&nbsp;</li>
<li>Double-click HKEY_LOCAL_MACHINE, SOFTWARE, Microsoft, Windows NT, CurrentVersion, Drivers32,<br />
&nbsp;</li>
<li>Locate the <code>msacm.voxacm160</code> Registry key on the right pane (the Vista Problem Reports And Solutions suggest a different Registry key named <code>msacm.voxacm16</code>, which is not exists in my <a href="http://www.walkernews.net/2007/05/06/slp-hack-to-activate-windows-vista-permanently/" title="Educational reference of SLP 2.0 weakness that lead Binbin and Aeno to activate all Windows Vista edition permanently." rel="bookmark">Vista Ultimate version</a>),<br />
&nbsp;</li>
<li>Right-click the <code>msacm.voxacm160</code> Registry key, select Rename option and change it to something else, e.g. <code>no.msacm.voxacm160</code></li>
</ol>
<br />Bear in mind that this is only a temporarily <a href="http://www.walkernews.net/2007/07/27/add-copy-to-or-move-to-context-menu-in-vista/" title="Registry trick to add a Copy To Folder or Move To Folder shortcut in Windows Vista context menu?" rel="bookmark">Registry trick</a> to resolve the codec compatibility problem. In rare cases, this trick may cause older programs that rely on this audio codec to malfunction! If it happens so, try to revert the Registry change &#8211; i.e. rename <code>no.msacm.voxacm160</code> back to <code>msacm.voxacm160</code> will do.<br />
<br />So far, this Registry trick works well for my case!<br />

<ul class="related_post"><li><a href="http://www.walkernews.net/2009/07/06/how-to-embed-swf-in-microsoft-office-2007-document/" title="How To Embed SWF In Microsoft Office 2007 Document">How To Embed SWF In Microsoft Office 2007 Document</a></li><li><a href="http://www.walkernews.net/2009/07/05/how-to-enable-or-show-developer-tab-in-microsoft-office-2007-ribbon-interface/" title="How To Enable Or Show Developer Tab In Microsoft Office 2007 Ribbon Interface?">How To Enable Or Show Developer Tab In Microsoft Office 2007 Ribbon Interface?</a></li><li><a href="http://www.walkernews.net/2009/04/24/how-to-embed-swf-file-or-shockwave-flash-object-in-microsoft-word-2007/" title="How To Embed SWF File Or Shockwave Flash Object In Microsoft Word 2007?">How To Embed SWF File Or Shockwave Flash Object In Microsoft Word 2007?</a></li><li><a href="http://www.walkernews.net/2009/04/23/how-to-play-wv-file-or-wavpack-media-file/" title="How To Play WV File Or WavPack Media File?">How To Play WV File Or WavPack Media File?</a></li><li><a href="http://www.walkernews.net/2008/10/21/microsoft-word-2007-hidden-functions-generate-lorem-ipsum-and-sample-text/" title="Microsoft Word 2007 Hidden Functions Generate Lorem Ipsum And Sample Text">Microsoft Word 2007 Hidden Functions Generate Lorem Ipsum And Sample Text</a></li><li><a href="http://www.walkernews.net/2008/05/16/how-to-check-net-framework-version-installed/" title="How To Check .Net Framework Version Installed">How To Check .Net Framework Version Installed</a></li><li><a href="http://www.walkernews.net/2008/04/16/registry-used-to-print-vista-version-on-desktop/" title="Registry Used To Print Vista Version On Desktop">Registry Used To Print Vista Version On Desktop</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.walkernews.net/2007/08/13/how-to-fix-powerpoint-slide-show-crash-problem/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Configure Windows Registry In Command Prompt</title>
		<link>http://www.walkernews.net/2007/08/08/configure-windows-registry-in-command-prompt/</link>
		<comments>http://www.walkernews.net/2007/08/08/configure-windows-registry-in-command-prompt/#comments</comments>
		<pubDate>Wed, 08 Aug 2007 03:43:25 +0000</pubDate>
		<dc:creator>Walker</dc:creator>
				<category><![CDATA[Howto]]></category>
		<category><![CDATA[Windows Vista]]></category>
		<category><![CDATA[Batch]]></category>
		<category><![CDATA[Command Prompt]]></category>
		<category><![CDATA[Console]]></category>
		<category><![CDATA[Reg.exe]]></category>
		<category><![CDATA[Registry]]></category>
		<category><![CDATA[Scripts]]></category>
		<category><![CDATA[VBS]]></category>
		<category><![CDATA[WSH]]></category>

		<guid isPermaLink="false">http://www.walkernews.net/2007/08/08/configure-windows-registry-in-command-prompt/</guid>
		<description><![CDATA[How to configure Windows Registry keys in command prompt, batch program or Windows scripts?]]></description>
			<content:encoded><![CDATA[You might have learnt about Reg.exe command in some of the Registry-related tweaking articles &#8211; and I have this command in some of my posts too.<br />
<span id="more-425"></span><br />
Registry Console Tool, the descriptive name of Reg.exe, is a simple command line program used to manipulate or configure Windows Registry keys from <a href="http://www.walkernews.net/2007/06/27/copy-and-paste-text-in-command-prompt/" title="How to enable the Copy And Paste feature of Windows Command Prompt?" rel="bookmark">Command Prompt</a>, Windows Batch program, Windows script, etc.<br />

If all you need is just to write a really simple one-click program to tweak the Windows Registry keys, you can either <span style="text-decoration:underline;">create a Windows Registration File</span> (the .REG file extension) or <span style="text-decoration:underline;">using the Registry Console Tool</span> command.<br />
<br />For added features such as program intelligence and user interaction, you could write a Windows script to call the WSH functions &#8211; the WshShell.RegWrite and WshShell.RegRead function to manipulate Windows Registry keys directly or the WshShell.Exec function to get Reg.exe do the job.<br />
<br /><strong>How to create the .Reg file or Registration File for a particular Registry key and all its associated values in <a href="http://www.walkernews.net/2007/03/13/optimize-windows-vista-sata-driver-performance/" title="Tweak SATA driver to increase Windows Vista disk I/O performance" rel="bookmark">Windows Vista</a>?</strong><br />
<ol>
<li>Open up Windows Registry Editor and locate the destination Registry key</li>
<li>Right-click the Registry key and click Export option from the pop-up menu</li>
<li>In the Export Registry File dialog box, select the target folder to save the to-be-created .REG file, give the Registration File a name, leave the Exported Range option to stay as Selected Branch, and click the Save button.</li>
</ol>
<br />Once the .REG file created, you can easily recreate the key and associated values on another computer &#8211; just save the .REG file on the target Windows machine and double-click it. Having say that, one can also backup the whole Windows Registry keys (for restoration in the case of Windows Registry corruption) by selecting ALL option of the Export Range section in Export Registry File dialog box!<br />
<br /><strong>How to manipulate the Windows Registry keys from command line with the Reg.exe or Registry Console Tool in Windows Vista?</strong><br />
<br />Open up <a href="http://www.walkernews.net/2007/05/21/open-command-prompt-here-with-elevated-privilege/" title="How to add a shortcut of elevated privilege Command Prompt in Windows Vista context menu?" rel="bookmark">an elevated Command Prompt window</a> in Windows Vista and type <code>reg /?</code> &#8211; the <a href="http://www.walkernews.net/2007/07/30/setup-remote-desktop-port-forwarding/" title="How to setup or configure Remote Desktop port forwarding in Windows Vista with Putty SSH client?" rel="bookmark">Windows Vista Ultimate</a> version of Registry Console Tool allows one to perform Registry tasks such as QUERY, ADD, DELETE, COPY, SAVE, LOAD, UNLOAD, RESTORE, COMPARE, EXPORT, IMPORT, and FLAGS.<br />
<br />Hence, things that can be done in Registry Editor are well supported by Reg.exe tool as well. Best of all, Reg.exe allows one to write a Batch program or Windows script to automate the tasks!<br />
<br />To understand how each of the Reg.exe options going to work, e.g. the ADD option, you can type <code>reg add /?</code> in the Command Prompt window. And, remember to get an elevated Command Prompt window in case of writing to Windows Registry in <a href="http://www.walkernews.net/2007/04/07/ultimate-windows-vista-codec-pack-storm-codec/" title="Storm Codec is an ultimate codec pack to play all multimedia formats in Windows Vista" rel="bookmark">Windows Vista</a>.<br />
<br />For an intelligent Windows scripts or Batch file, always use the Reg.exe return code to confirm the Reg.exe command has committed successfully or fail at errors &#8211; 0 means successful or 1 means failure.<br />
<br /><strong>Download the Reg.exe tool from Microsoft Download Center</strong><br />
<br />Should you need a copy of Reg.exe to run on Windows Server 2003, <a href="http://www.walkernews.net/2007/02/22/vista-flip-3d-windows-aero-for-xp/" title="Freeware that adding Vista transparent window and Windows Flip feature for Windows XP" rel="bookmark">Windows XP</a> or Windows 2000, download either one of the <a href="http://support.microsoft.com/kb/816819" title="Download Microsoft Platform Support Reporting Utility package that contain a copy of Registry Console Tool program." rel="bookmark" target="_blank">Microsoft Platform Support Reporting Utility</a> package.<br />
<br /><em>This is the Reg.exe version 2.x but works similar to Reg.exe in <a href="http://www.walkernews.net/2007/05/11/windows-vista-activation-cracks-comparison/" title="Windows Vista cracks comparion check" rel="bookmark">Windows Vista Ultimate</a>, except missing the additional FLAGS option.</em><br />
<br />Personally, I prefer to download the smaller file size package, i.e. the <a href="http://download.microsoft.com/download/b/b/1/bb139fcb-4aac-4fe5-a579-30b0bd915706/mpsrpt_sus.exe" title="You can get a copy of Registry Console Tool or Reg.exe by downloading the Software Update Services package from Microsoft Platform Support Reporting Utility" rel="bookmark" target="_blank">Software Update Services package</a>. It&#8217;s a self-extract package which you could unzip the content by double-click the file or by using <a href="http://www.walkernews.net/2007/04/22/power-archiver-2007-serial-number-cracked-again/" title="Explosion leaks the Power Archiver serial number to the Net" rel="bookmark">Power Archiver</a> and copy the Reg.exe program to one of the folder in %PATH% environment variable (by executing <code>set PATH</code> or <code>echo %PATH%</code> in <a href="http://www.walkernews.net/2007/06/03/how-to-maximize-vista-command-prompt-window/" title="How to maximize Command Prompt window in Windows Vista?" rel="bookmark">Command Prompt</a> window). The best bet is on Windows installation directory, i.e. C:\winnt (for Windows 2000) or C:\windows (for Windows XP and Windows Vista).<br />
<br /><strong>Review of adding, deleting or changing Windows Registry keys with Reg.exe in Windows Vista</strong><br />
<br />1) <a href="http://www.walkernews.net/2007/07/27/add-copy-to-or-move-to-context-menu-in-vista/" title="How to add a Copy To Folder or Move To Folder option in the Context menu?" rel="bookmark">How to add Copy To Folder or Move To Folder option in Context menu?</a><br />
<br />2) <a href="http://www.walkernews.net/2007/08/01/how-to-change-remote-desktop-listening-port/" title="How to change the default TCP listening port number of Windows Remote Desktop service?" rel="bookmark">How to change the Remote Desktop listening port number?</a><br />
<br />3) <a href="http://www.walkernews.net/2007/06/27/how-to-tweak-or-disable-uac-in-vista/" title="How to tweak or disable User Account Control or UAC from command line?" rel="bookmark">How to tweak or disable UAC in Windows Vista Command Prompt?</a><br />
<br />4) <a href="http://www.walkernews.net/2007/07/05/how-to-change-user-agent-string/" title="How to change or spoof the Internet Explorer User Agent String value?" rel="bookmark">How to change or spoof Internet Explorer User Agent String value?</a><br />
<br />5) <a href="http://www.walkernews.net/2007/07/23/tweak-windows-vista-bubbles-screen-saver/" title="How to tweak the Vista Bubbles screen saver setting in Windows Registry" rel="bookmark">How to tweak the Vista Bubbles screen saver hidden settings?</a><br />

<ul class="related_post"><li><a href="http://www.walkernews.net/2009/05/29/how-to-disable-or-enable-user-switching-in-windows-vista/" title="How To Disable Or Enable User Switching In Windows Vista?">How To Disable Or Enable User Switching In Windows Vista?</a></li><li><a href="http://www.walkernews.net/2008/04/16/registry-used-to-print-vista-version-on-desktop/" title="Registry Used To Print Vista Version On Desktop">Registry Used To Print Vista Version On Desktop</a></li><li><a href="http://www.walkernews.net/2009/05/14/how-to-fix-windows-update-error-80072efd-in-vista-sp1/" title="How To Fix Windows Update Error 80072EFD In Vista SP1?">How To Fix Windows Update Error 80072EFD In Vista SP1?</a></li><li><a href="http://www.walkernews.net/2008/05/16/how-to-check-net-framework-version-installed/" title="How To Check .Net Framework Version Installed">How To Check .Net Framework Version Installed</a></li><li><a href="http://www.walkernews.net/2008/04/13/how-to-add-an-oem-logo-to-vista-system-properties/" title="How To Add An OEM Logo To Vista System Properties">How To Add An OEM Logo To Vista System Properties</a></li><li><a href="http://www.walkernews.net/2007/11/11/secure-the-ultimate-vista-administrator-account/" title="Secure The Ultimate Vista Administrator Account">Secure The Ultimate Vista Administrator Account</a></li><li><a href="http://www.walkernews.net/2007/07/30/how-to-verify-dot-net-framework-version/" title="How To Verify .Net Framework Version">How To Verify .Net Framework Version</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.walkernews.net/2007/08/08/configure-windows-registry-in-command-prompt/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>How To Change Remote Desktop Listening Port</title>
		<link>http://www.walkernews.net/2007/08/01/how-to-change-remote-desktop-listening-port/</link>
		<comments>http://www.walkernews.net/2007/08/01/how-to-change-remote-desktop-listening-port/#comments</comments>
		<pubDate>Wed, 01 Aug 2007 09:08:08 +0000</pubDate>
		<dc:creator>Walker</dc:creator>
				<category><![CDATA[Howto]]></category>
		<category><![CDATA[Windows Vista]]></category>
		<category><![CDATA[3389]]></category>
		<category><![CDATA[RDP]]></category>
		<category><![CDATA[Registry]]></category>
		<category><![CDATA[Remote Desktop]]></category>

		<guid isPermaLink="false">http://www.walkernews.net/2007/08/01/how-to-change-remote-desktop-listening-port/</guid>
		<description><![CDATA[How to change the Remote Desktop listening port in Windows Vista, Windows XP or Windows 2003?]]></description>
			<content:encoded><![CDATA[By default, the Windows Remote Desktop service will automatically listen to TCP port 3389.<br />
<span id="more-419"></span><br />
However, it&#8217;s perfectly fine to change or alter the default RDP listening port for any reasons that an administrator can think of. For example, to bypass Firewall that only allow web browsing but restrict Remote Desktop connection and others protocols.<br />

In this case, you might need to change the default TCP 3389 to TCP 80 or 443 for the Remote Desktop service running on <a href="http://www.walkernews.net/2007/05/06/slp-hack-to-activate-windows-vista-permanently/" title="How does Binbin and Aeno activate Windows Vista Ultimate with their finding on SLP 2.0 loophole?" rel="bookmark">Vista Ultimate</a> PC at home.<br />
<br /><strong>How to change the Remote Desktop listening port on Windows Vista?</strong><br />
<br />This RDP trick is applicable to Remote Desktop service running on Windows Server 2003 and <a href="http://www.walkernews.net/2007/03/25/vista-open-command-window-here-in-xp/" title="Adding Open Command Window Here shortcut in Windows XP context menu?" rel="bookmark">Windows XP</a> as well (and likely working on Windows Server 2008 or later too)!<br />
<ol>
<li>Open up the <a href="http://www.walkernews.net/2007/07/23/tweak-windows-vista-bubbles-screen-saver/" title="Windows Registry hack to tweak Windows Vista Bubbles screen saver setting" rel="bookmark">Windows Registry</a> Editor and browse to this Registry path:
<pre>HKEY_LOCAL_MACHINE&#92;System&#92;CurrentControlSet&#92;Control&#92;Terminal Server&#92;WinStations&#92;RDP-Tcp</pre>
</li>
<li>Locate the <code>PortNumber</code> Registry key on the right-pane, double-click to open, click the Decimal option in the Base section, enter <code>443</code> in the text box and click OK (change 443 to the port number of your need).
<br />Take note that:<br />
<ul>
<li>The new TCP port for Remote Desktop service must not currently in used. To confirm the TCP port 443 is free or unused, type
<br /><code>netstat -an | find "443"</code><br />
<br />at the Command Prompt window. If there is no output from the <a href="http://www.walkernews.net/2007/05/27/linux-commands-to-check-network-connection/" title="lsof vs netstat command - Which Linux networking command works better?" rel="bookmark">netstat command</a>, meaning that the TCP 443 port number is not in used (and thus available for new RDP listening port).<br />
&nbsp;</li>
<li>If you&#8217;re not comfortable with Windows Registry Editor, you can simply <a href="http://www.walkernews.net/2007/06/27/copy-and-paste-text-in-command-prompt/" title="How to enable Copy and Paste feature in Windows Vista Command Prompt?" rel="bookmark">copy and paste</a> the following Console Registry Tool command (Reg.exe) to an <a href="http://www.walkernews.net/2007/05/21/open-command-prompt-here-with-elevated-privilege/" title="How to add Open Command Window Here shortcut with elevated privilege in Windows Vista context menu?" rel="bookmark">elevated Command Prompt window</a> in Windows Vista:
<br /><em>You might need to download Reg.exe from Microsoft if it&#8217;s not currently in your Windows.</em><br />
<pre>REG ADD "HKLM&#92;System&#92;CurrentControlSet&#92;Control&#92;Terminal Server&#92;WinStations&#92;RDP-Tcp" /v PortNumber /t REG_DWORD /d 443 /f</pre>
</li>
<br /><Li>To change back to the default, simply replace the PortNumber Registry key (in this case, TCP 443) to TCP port 3389.</li>
</ul>
</li>
</ol>
<br /><strong>How to restart Windows Remote Desktop service after changing its listening port?</strong><br />
<br />There are at least two ways to enable/disable or restart Remote Desktop service &#8211; Group Policies or System Properties:<br />
<br /><span style="text-decoration:underline;">Using Group Policies (i.e. gpedit.msc)</span><br />
<ol>
<li>Click the Vista Orb, type <code>gpedit.msc</code> in the <em>Start Search</em> text box (<a href="http://www.walkernews.net/2007/07/09/vista-instant-search-vs-windows-run-command/" title="Vista Instant Search vs Windows Run command - why prefer to Vista Instant Search?" rel="bookmark">Vista Instant Search</a>) and double-click the &#8220;gpedit&#8221; in the Program list<br />
&nbsp;</li>
<li>For <a href="http://www.walkernews.net/2007/07/27/add-copy-to-or-move-to-context-menu-in-vista/" title="How to add Copy To Folder or Move To Folder shortcut in Windows XP and Windows Vista context menu?" rel="bookmark">Windows XP</a> SP2:
<br />In <strong>Computer Configuration</strong>, <strong>Administrative Templates</strong>, <strong>Windows Components</strong>, <strong>Terminal Services</strong>, double-click the <strong>Allows users to connect remotely using Terminal Services</strong> setting.<br />
<br />For <a href="http://www.walkernews.net/2007/04/07/ultimate-windows-vista-codec-pack-storm-codec/" title="Storm Codec is the ultimate codec pack for Windows Vista" rel="bookmark">Windows Vista Ultimate</a>:<br />
<br />In <strong>Computer Configuration</strong>, <strong>Administrative Templates</strong>, <strong>Windows Components</strong>, <strong>Terminal Services</strong>, <strong>Terminal Server</strong>, <strong>Connections</strong>, double-click the <strong>Allows users to connect remotely using Terminal Services</strong> setting.<br />
&nbsp;</li>
<li>Click Disable to deactivate Remote Desktop and then click Enable to reactivate the service again.</li>
</ol>
<br /><span style="text-decoration:underline;">Using System Properties dialog box</span><br />
<br />If the &#8220;Allows users to connect remotely using Terminal Services&#8221; Group Policy setting is set to &#8220;Not Configured&#8221;, the &#8220;Enable Remote Desktop on this computer&#8221; setting (on the Remote tab of the System Properties dialog box) takes precedence. Otherwise, the &#8220;Allows users to connect remotely using Terminal Services&#8221; Group Policy setting takes precedence.<br />
<br />For <a href="http://www.walkernews.net/2007/06/17/how-to-run-chinese-program-in-vista-ultimate/" title="How to enable Windows Vista to support non-Unicode program, such as Chinese version program that can not render Chinese text properly in English version of Windows Vista?" rel="bookmark">Windows Vista</a> computer:<br />
<ol>
<li>Click the Vista Orb, type <code>system</code>, locate the &#8220;System&#8221; shortcut in the Program list and double-click to open it<br />
&nbsp;</li>
<li>Click the Remote Setting shortcut (require administrative privilege if <a href="http://www.walkernews.net/2007/06/27/how-to-tweak-or-disable-uac-in-vista/" title="how to tweak or disable User Account Control or UAC in Windows Vista?" rel="bookmark">UAC is turned on</a>) in the Task pane (on the left)<br />
&nbsp;</li>
<li>In the Remote Desktop section, select the &#8220;Don&#8217;t allow connection to this computer&#8221; option and click Apply button.<br />
&nbsp;</li>
<li>Select either &#8220;Allow connections from computers running any version of Remote Desktop (less secure)&#8221; or &#8220;Allow connections only from computers running Remote Desktop with Network Level Authentication (more secure)&#8221; option and click Apply button &#8211; to reactivate Remote Desktop service to listen on new TCP port number.</li>
</ol>
<br />For <a href="http://www.walkernews.net/2007/04/03/adding-shortcut-in-windows-xp-sendto-menu/" title="How to add more program shortcuts in the Send To option of Windows XP context menu?" rel="bookmark">Windows XP</a> SP2 computer:<br />
<ol>
<li>Right-click My Computer icon<br />
&nbsp;</li>
<li>Select Properties option from the pop-up context menu<br />
&nbsp;</li>
<li>Click on the Remote tab of System Properties dialog box<br />
&nbsp;</li>
<li>In the Remote Desktop section, untick the check box that labelled &#8220;Allow Users To Connect Remotely To This Computer&#8221; and click the Apply button<br />
&nbsp;</li>
<li>Tick the check box that labelled &#8220;Allow Users To Connect Remotely To This Computer&#8221; and click the OK button</li>
</ol>
<br />Now, the <code>netstat -an | find "443"</code> will showing the TCP 443 port listening for RDP connection!<br />
<br /><strong>How to connect to a Windows Remote Desktop service that is not listening on the default TCP 3389 port number?</strong><br />
<br />Open the <a href="http://www.walkernews.net/2007/07/30/setup-remote-desktop-port-forwarding/" title="How to setup Remote Desktop port forwarding in Windows Vista using the Putty SSH client?" rel="bookmark">Remote Desktop Connection</a> client and specify the <em>host:port</em> syntax (e.g. Vista-Ultimate:443) as the connection string.<br />
<br /><img src='http://www.walkernews.net/wp-content/uploads/2007/07/vista-remote-desktop-port-forwarding.JPG' alt='Remote Desktop port forwarding in Windows Vista using Putty SSH client.' tag='Remote Desktop'/><br />
<sup>Instruct the Windows Vista Remote Desktop Connection client to connect to localhost at TCP port 9999 (via <a href="http://www.walkernews.net/2007/07/22/ssh-port-forwarding-local-vs-remote/" title="SSH Local Port Forwarding vs SSH Remote Port Forwarding." rel="bookmark">SSH Port Forwarding</a>) instead of the default RDP listening port</sup><br />

With reference to Microsoft Technet on <a href="http://technet2.microsoft.com/windowsserver/en/library/1e4a44de-2be1-4d29-9387-9f04b79cc17a1033.mspx?pf=true" title="Enable or Disable Remote Desktop in Windows Vista" target="_blank" rel="bookmark">Enable or Disable Remote Desktop</a> and Microsoft Knowledge Base article KB306759 on <a href="http://support.microsoft.com/kb/306759" title="KB306759 - How to change the listening port for Remote Desktop" target="_blank" rel="bookmark">How to change the listening port for Remote Desktop</a><br />
<ul class="related_post"><li><a href="http://www.walkernews.net/2008/07/20/how-to-reboot-or-shutdown-windows-vista-in-remote-desktop-connection/" title="How To Reboot or Shutdown Windows Vista In Remote Desktop Connection?">How To Reboot or Shutdown Windows Vista In Remote Desktop Connection?</a></li><li><a href="http://www.walkernews.net/2007/08/23/how-to-copy-file-over-remote-desktop-connection/" title="How To Copy File Over Remote Desktop Connection">How To Copy File Over Remote Desktop Connection</a></li><li><a href="http://www.walkernews.net/2007/07/30/setup-remote-desktop-port-forwarding/" title="Setup Remote Desktop Port Forwarding In Windows Vista">Setup Remote Desktop Port Forwarding In Windows Vista</a></li><li><a href="http://www.walkernews.net/2008/04/16/registry-used-to-print-vista-version-on-desktop/" title="Registry Used To Print Vista Version On Desktop">Registry Used To Print Vista Version On Desktop</a></li><li><a href="http://www.walkernews.net/2008/04/13/how-to-add-an-oem-logo-to-vista-system-properties/" title="How To Add An OEM Logo To Vista System Properties">How To Add An OEM Logo To Vista System Properties</a></li><li><a href="http://www.walkernews.net/2007/11/12/direct-download-remote-desktop-for-windows-2000/" title="Direct Download Remote Desktop For Windows 2000">Direct Download Remote Desktop For Windows 2000</a></li><li><a href="http://www.walkernews.net/2007/07/23/tweak-windows-vista-bubbles-screen-saver/" title="Tweak Windows Vista Bubbles Screen Saver">Tweak Windows Vista Bubbles Screen Saver</a></li></ul>]]></content:encoded>
			<wfw:commentRss>http://www.walkernews.net/2007/08/01/how-to-change-remote-desktop-listening-port/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
	</channel>
</rss>
