Managing Windows Registered DLLs

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

Leave a Reply

Your email address will not be published. Required fields are marked *