Darrell Norton's Blog [MVP]

Sponsors

The Lounge

News

  • Darrell Norton pic

    MVP logo

    View Darrell Norton's profile on LinkedIn

    Currently Reading:

    weewar.com

Advertisement

Images in this post missing? We recently lost them in a site migration. We're working to restore these as you read this. Should you need an image in an emergency, please contact us at imagehelp@codebetter.com
Stop the Windows XP file association web service

From here:

The file association Web service in Microsoft Windows XP Professional Service Pack 1 (SP1) extends the scope of information stored locally by the operating system about file name extensions, file types, and the applications or components to use when opening a particular file type. Assuming that .123 filetype is unregistered in your system, and when you double-click a 123 file, you'll be presented with the Web Service dialog as shown in the figure. When you choose the first option, Windows launches this website:

http://shell.windows.com/fileassoc/0409/xml/redir.asp?Ext=123

 Windows XP file extension web service

To prevent the initial dialog from being shown, to proceed directly to the Choose Programs dialog, try this:

  • Open Registry Editor and navigate to HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer
  • In the right-pane, set InternetOpenWith value to 0
  • To make changes to all the user profiles, make the changes here:  HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Explorer
  • If InternetOpenWith does not exist, create a new REG_DWORD value and assign 0 to it.

Another method:

  • Navigate to the following registry key: HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Policies\System
  • In the right-pane, create a new REG_DWORD value named NoInternetOpenWith 
  • Double-click NoInternetOpenWith and set it's data to 1.
  • To make changes to the current user profile only, delete the NoInternetOpenWith value in HKEY_LOCAL_MACHINE area, and add the value here: HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\System

Posted 11-16-2004 7:54 AM by Darrell Norton
Filed under:

[Advertisement]

Comments

Jon Galloway wrote re: Stop the Windows XP file association web service
on 11-16-2004 7:45 AM
You can do this with a REG file. Handy if you want to do this on several computers. Save the text below the --- to a reg file and double click on it:
---
Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\policies\System]
"NoInternetOpenWith"=dword:00000001

[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer]
"InternetOpenWith"=dword:00000000
Darrell wrote re: Stop the Windows XP file association web service
on 11-16-2004 8:01 AM
Indeed, thanks Jon!
Forest Blog wrote Stop the Windows XP file association web service
on 01-21-2005 1:26 AM
anon user wrote re: Stop the Windows XP file association web service
on 03-12-2005 10:12 AM
This is the way that it should of been done (the default mechanism) --- great job (thanks again)
Skylog » Blog Archive » links for 2007-03-01 wrote Skylog » Blog Archive » links for 2007-03-01
on 03-01-2007 12:21 AM