@echo off @rem -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- @rem . @rem list_installed_apps.cmd @rem show which programs are installed on an nt4.0 box @rem also works on Windows 2000 Pro @rem . @rem dave.capella@cornell.edu - 8/2/01 @rem . @rem note: requires NT4 Resource Kit for REGDMP.EXE and perl.exe @rem expects to find them in C:\bin, and installs them if @rem from the server if they are missing. @rem . @rem -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=- C: cd \ IF EXIST C:\bin GOTO gotbin mkdir \bin :gotbin IF EXIST C:\bin\perl.exe GOTO gotperl copy I:\nt\perl\perl.exe C:\bin copy I:\nt\perl\perl100.dll C:\bin :gotperl IF EXIST C:\bin\regdmp.exe GOTO dodump copy I:\nt\regdmp.exe C:\bin :dodump C:\bin\regdmp.exe HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Uninstall | perl.exe -ne "print if s/.*DisplayName = //;" | sort @echo on