#5780 closed defect (fixed)
VBoxNetFltNotify.dll does not unregister itself => Fixed in SVN
回報者: | Mihai Hanor | 負責人: | |
---|---|---|---|
元件: | other | 版本: | VirtualBox 3.1.2 |
關鍵字: | 副本: | ||
Guest type: | other | Host type: | Windows |
描述
This is an old issue, tested only with Windows XP SP3 as host. I've also tested the current version, 3.1.2.
Uninstalling VirtualBox always leaves behind the "VirtualBox Bridged Networking Driver Notify Object 1.0 Type Library" registry class (I don't know exactly what it's called).
Also, running "regsvr32 /u VBoxNetFltNotify.dll" doesn't unregister the dll.
example of what's left behind (regedit export):
[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\TypeLib\{1EA703AF-A150-4FDD-83DC-C07A7A460C7E}] [HKEY_LOCAL_MACHINE\SOFTWARE\Classes\TypeLib\{1EA703AF-A150-4FDD-83DC-C07A7A460C7E}\1.0] @="VirtualBox Bridged Networking Driver Notify Object 1.0 Type Library" [HKEY_LOCAL_MACHINE\SOFTWARE\Classes\TypeLib\{1EA703AF-A150-4FDD-83DC-C07A7A460C7E}\1.0\0] [HKEY_LOCAL_MACHINE\SOFTWARE\Classes\TypeLib\{1EA703AF-A150-4FDD-83DC-C07A7A460C7E}\1.0\0win32] @="C:\WINDOWS\system32\VBoxNetFltNotify.dll" [HKEY_LOCAL_MACHINE\SOFTWARE\Classes\TypeLib\{1EA703AF-A150-4FDD-83DC-C07A7A460C7E}\1.0\FLAGS] @="0" [HKEY_LOCAL_MACHINE\SOFTWARE\Classes\TypeLib\{1EA703AF-A150-4FDD-83DC-C07A7A460C7E}\1.0\HELPDIR] @="C:\WINDOWS\system32\"
更動歷史 (4)
comment:2 15 年 前 由 編輯
it's still there, in 3.2.0 beta1
at the bottom of src/VBox/HostDrivers/VBoxNetFlt/win/notifyobj/VBoxNetFltNotify.cpp
STDAPI DllUnregisterServer(void) { TraceMsg( L"DllUnregisterServer.\n"); _Module.UnregisterServer(); return S_OK; }
shouldn't it be...?
STDAPI DllUnregisterServer(void) { TraceMsg( L"DllUnregisterServer.\n"); return _Module.UnregisterServer(TRUE); }
comment:3 15 年 前 由 編輯
摘要: | VBoxNetFltNotify.dll does not unregister itself → VBoxNetFltNotify.dll does not unregister itself => Fixed in SVN |
---|
We have fixed the issue. The fix will be available in the next VBox release. Note that I kept the old
_Module.UnregisterServer(); return S_OK;
rather than
return _Module.UnregisterServer();
for now to avoid possible regressions, because the latest mux sample from WDK does exactly the same, and I expect this could be done intentionally to avoid network filter uninstall failures caused by notify dll unregistration failures.
the "regsvr32 /u VBoxNetFltNotify.dll" command always displays the "DllUnregisterServer succeeded" message