태그 보관물: event-log

event-log

XP에서 설치 로그? 번호와 함께

XP는 설치 버전 번호와 함께 응용 프로그램 설치 로그를 유지합니까?

MSI 기반 설치가 언제 발생했으며 어떤 버전이 설치되어 있는지 알고 싶습니다.



답변

이것 좀 봐. 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


답변