

- #Download windows server 2008 r2 64 bit .dll
- #Download windows server 2008 r2 64 bit 64 Bit
- #Download windows server 2008 r2 64 bit download
#Download windows server 2008 r2 64 bit download
Now I cannot find the a download for the. I also do not want to use group policy for this, since I will have to go through weeks of approval to go through with this.
#Download windows server 2008 r2 64 bit 64 Bit
Then you should look for queries on HKEY_CLASSES_ROOT\ that fail (with the NAME_NOT_FOUND error for example), or queries on HKEY_CLASSES_ROOT\CLSID\ that fail. We have a windows 2008 r2 64 bit server and I want to use the ifmember function to give certain users in the ou to have 1 mapped drive if they belong to a certain security group. You should put a filter on the working process (here: Regsvr32.exe) to only capture what's interesting. If you don't have access to the original DLL source, I would suggest to use SysInternal's Process Monitor tool to track COM registry lookups (there use to be a more simple RegMon tool but it may not work any more).
#Download windows server 2008 r2 64 bit .dll
If you get this error when trying to register a DLL, it may be possible that the registration code for this DLL is trying to instantiate another COM server (DLL or EXE) which is missing or not registered on this installation. Basically, a COM class is not declared in the installation registry. The InprocServer32 key has the DLL path.Įrror 0x80040154 is COM's REGDB_E_CLASSNOTREG, which means "Class not registered". That still doesn't quite tell you the server DLL, you should compare the trace with one you get from a machine that works. That gives you a hint what it is looking for. It shows you what registry keys Regsvr32.exe (actually: the COM server) is opening to find the server. To troubleshoot this, use SysInternals' ProcMon tool. A sad side-effect of the way COM error handling works. The error message is crappy, it doesn't tell you what other server it needs. The diagnostic you got is however pretty self-evident from the error code, for some reason this COM server needs another one to be registered first. What that code does is fairly unguessable. And calls it to leave it up to the COM server to register itself. Then GetProcAddress() to find the DllRegisterServer() entry point in the DLL. The Regsvr32.exe tool does very little, it calls LoadLibrary() to load the DLL that's passed in the command line argument. That's the error you get when the DLL itself requires another COM server to be registered first or has a dependency on another DLL that's not available.
