Here is a registry query that lists all the registered DLLs on a Windows PC:
C:>reg query "HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindowsCurrentVersionSharedDLLs" | grep -i -P "aspnet_counters.dll|wminet_utils.dll"
C:WindowsMicrosoft.NETFrameworkv1.0.3705wminet_utils.dll REG_DWORD 0x1000
c:Windowssystem32aspnet_counters.dll REG_DWORD 0x1
C:>
32-bit DLLs on 64-bit PC:
C:>reg query "HKEY_LOCAL_MACHINESOFTWAREWow6432NodeMicrosoftWindowsCurrentVersionSharedDLLs" | grep -i -P "aspnet_counters.dll|wminet
_utils.dll"
C:WindowsMicrosoft.NETFrameworkv1.0.3705wminet_utils.dll REG_DWORD 0x1000
C:Windowssystem32aspnet_counters.dll REG_DWORD 0x1
C:>
2 thoughts on “Managing Windows Registered DLLs”
‘grep’ is not recognized as an internal or external command, operable program or batch file.
Hi,
Grep isn’t available natively on Windows. you need to have it installed. It’ll be shipped as part of CygWin installation.
Thanks,
Govardhan