first_page the funky knowledge base
personal notes from way, _way_ back and maybe today

PowerShell and ADSI: Searching the Registry to Find All Available Providers on Windows with .NET Objects

PS C:\\> $key = [Microsoft.Win32.Registry]::LocalMachine

PS C:\\> $key.GetSubKeyNames() HARDWARE SAM SECURITY SOFTWARE SYSTEM

PS C:\\> $subKey = $key.OpenSubKey("SOFTWARE\\\\Microsoft\\\\ADs\\\\Provide rs")

PS C:\\> $subKey.GetSubKeyNames() IIS LDAP NDS NWCOMPAT WinNT

mod date: 2007-09-28T23:01:31.000Z