I’m not sure of the exact details, but this is what I think I’ve found. Perhaps someone at Microsoft would correct or elaborate on this.
Previously, actxprxy.dll (ActiveX Interface Marshaling Library) was used as the proxy for a multitude of system interfaces, such as IShellFolder and IServiceProvider.
In Windows 7 (and probably Vista also), the GUID of this library has changed from {B8DA6310-E19B-11D0-933C-00A0C90DCAA9} to {C90250F3-4D7D-4991-9B69-A5C5BC1C2AE6}
Secondly, there is also a new Proxy/Stub provider found in ieproxy.dll of Internet Explorer (IE ActiveX Interface Marshaling Library). Some interfaces that previously used actxprxy.dll are now registered to use ieproxy.dll.
Now various problematic software (such as Vault 3.x) will try to register against actxproxy using the old GUID, and for interfaces now proxied by ieproxy.dll.
You must use regsvr32 to re-register the two proxy DLLs, then reboot
You can use the below batch file to do this.
You must run this batch file with administrative privileges (right click on the file and choose Run as administrator):
If you don’t run the batch file as an administrator, you will get an error as pictured:
[Download RegisterActxprxyAndIeproxy.cmd]
RegisterActxprxyAndIeproxy.cmd source:
@echo off :: 32 bit and 64 bit IF EXIST "%SystemRoot%\System32\actxprxy.dll" "%SystemRoot%\System32\regsvr32.exe" "%SystemRoot%\System32\actxprxy.dll" IF EXIST "%ProgramFiles%\Internet Explorer\ieproxy.dll" "%SystemRoot%\System32\regsvr32.exe" "%ProgramFiles%\Internet Explorer\ieproxy.dll" :: 64 bit only (32bit on 64 bit) IF EXIST "%WinDir%\SysWOW64\actxprxy.dll" "%WinDir%\SysWOW64\regsvr32.exe" "%WinDir%\SysWOW64\actxprxy.dll" IF EXIST "%ProgramFiles(x86)%\Internet Explorer\ieproxy.dll" "%WinDir%\SysWOW64\regsvr32.exe" "%ProgramFiles(x86)%\Internet Explorer\ieproxy.dll"
Don’t forget to reboot after re-registering the DLLs!
Edit: The script has been updated to support 64-bit Windows
Tags: actxprxy.dll, explorer, ieproxy.dll, iserviceprovider, management studio, no such interface supported, open each folder, same window, sourcegear, sql server, team explorer, vault, {B8DA6310-E19B-11D0-933C-00A0C90DCAA9}, {C90250F3-4D7D-4991-9B69-A5C5BC1C2AE6}
Opera 10 Beta 3 is out! The timing is uncanny because the last time I did a clean install of Windows 7, Beta 2 came out hours after I had done a new install.
Today I installed Windows 7 RTM on my machine at work, and then hours later, a new beta of Opera 10. What the?