Register comdlg32.dll gets Regsvr32: DllRegisterServer entry point was not found

comdlg32.dll is not a COM DLL and cannot be registered. One way to confirm this for yourself is to run this command: dumpbin /exports comdlg32.dll You’ll see that comdlg32.dll doesn’t contain a DllRegisterServer method. Hence RegSvr32.exe won’t work. That’s your answer. ComDlg32.dll is a a system component. (exists in both c:\windows\system32 and c:\windows\syswow64) Trying to … Read more

tech