|
| ||||||||||
| Tags: action, check, dll, registered, regsvr32 |
![]() |
| | Thread Tools | Search this Thread |
|
#1
| |||
| |||
| How to check if a certain DLL is registered? Need RegSvr32 WITHOUT action
|
|
#2
| |||
| |||
| RE: How to check if a certain DLL is registered? Need RegSvr32 WITHOUT
First you need to know the name of the object you are looking for (you might have to search the registry for this). Using "C:\WINDOWS\System32\wshom.ocx" as an example (same thing for OCX/DLL) then you would search the registry under HKEY_CLASSES_ROOT and find out that "WScript.Network" is the name to look for. Your script would read the CLSID (a.k.a. GUID a.k.a globally unique identifier) from this key: HKEY_CLASSES_ROOT\WScript.Network\CLSID - Then use the CLSID to find the actual code here: HKEY_CLASSES_ROOT\CLSID\{093FF999-1EA0-4079-9525-9614C3504B74} - The file path is stored here: HKEY_CLASSES_ROOT\CLSID\{093FF999-1EA0-4079-9525-9614C3504B74}\InProcServerÂ*32 Keep in mind there can be different versions referenced (ie: WScript.Network.1, WScript.Network.2), but the current version should be listed without a number at the end (WScript.Network) |
|
#3
| |||
| |||
| Re: How to check if a certain DLL is registered? Need RegSvr32 WITHOUT action
Hellogajrap, you just have to search teh following keys for the DLL file's name: [HKEY_CLASSES_ROOT\CLSID] [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\SharedDLLs] Hope it helps. |
![]() |
|
| Thread Tools | Search this Thread |
| |
Similar Threads for: "How to check if a certain DLL is registered? Need RegSvr32 WITHOUT action" | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| regsvr32/u lmpgspl.ax | Suu!Shant | Windows Vista Performance | 2 | 10-02-2010 05:20 PM |
| REGSVR32 0x80070005 | rEDNESS | Windows Security | 3 | 16-08-2009 11:08 AM |
| regsvr32 shell32.dll | BoanHed | TroubleShoot 98 | 2 | 22-11-2008 11:46 AM |
| regsvr32 error | Lulu | Vista Help | 5 | 17-06-2007 07:41 AM |
| Using Regsvr32.exe a dll return error | sayeed | Windows XP Support | 3 | 19-12-2006 09:00 AM |