답변:
이것 좀 봐. http://support.microsoft.com/kb/223300 로깅을 설정해야하므로 이전 설치에 대한 정보를 얻지 못할 수도 있지만 지금부터는 새 설치에 대한 정보를 얻을 수 있습니다.
WMIC를 쿼리하여 설치된 소프트웨어 목록 (특히 MSI가 설치되지 않은 목록)을 얻을 수 있습니다.
wmic product get / format : csv> Software_ % Computername % .csv
64 비트 앱 나열 :
powershell gci hklm:\Software\Microsoft\Windows\CurrentVersion\Uninstall -rec^|gp^|select DisplayName,ReleaseType,DisplayVersion^|sort DisplayName^|FT -Au|findstr [\s]>>C:\App64.txt
산출:
DisplayName ReleaseType DisplayVersion
64 Bit HP CIO Components Installer 7.2.4
Adobe PDF iFilter 11 for 64-bit platforms 11.0.00
Debugging Tools for Windows (x64) 6.12.2.633
GDR 5069 for SQL Server Analysis Services 2005 (64-bit) ENU (KB2716429) GDR 9.4.5069
...
32 비트 앱 나열 :
powershell gci hklm:\Software\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall -rec^|gp^|select DisplayName,ReleaseType,DisplayVersion^|sort DisplayName^|FT -Au|findstr [\s]>>C:\App32.txt