Software >> OS >> Windows >> Command Line >> How to obtain list of software on remote machines using Windows command line tools

Windows 2000 ============ Use REGDMP.EXE available in Windows 2000 server reource kit REGDMP -m \remotemachine "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall" | findstr "DisplayName" Windows 2003 ============ use built in command c:\windows\system32\reg.exe REG query \remotemachine\HKLM\Software\Microsoft\Windows\CurrentVersion\Uninstall" | findstr "DisplayName"