본문 바로가기

UTILITY

powershell 내PC에 설치된 프로그램 정보

728x90
반응형

$INSTALLED = Get-ItemProperty HKLM:\Software\Microsoft\Windows\CurrentVersion\Uninstall\* |  Select-Object DisplayName, DisplayVersion, Publisher, InstallDate
$INSTALLED += Get-ItemProperty HKLM:\Software\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\* | Select-Object DisplayName, DisplayVersion, Publisher, InstallDate
$INSTALLED | ?{ $_.DisplayName -ne $null } | sort-object -Property DisplayName -Unique | Format-Table -AutoSize

 

 

 

>이런결과가 나온다

728x90
반응형

'UTILITY' 카테고리의 다른 글

powershell Systeminfo 내PC 시스템정보  (0) 2022.12.15
Adobe 무료사용 - Adobe Express  (0) 2022.11.30
Power Automate 사용하기  (0) 2022.11.30
엑셀 데이터 분석 도구추가  (0) 2022.11.30
엑셀에서 Database사용하기  (0) 2022.11.30