본문 바로가기
프로그래밍/powershell

[powershell] 설치된 프로그램 리스트 조회

by IT맥구리나스 2022. 10. 11.

제어판 > 프로그램 추가 제거에 나오는 설치된 어플리케이션을 확인할 수 있다.

 

Get-ItemProperty HKLM:\Software\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\* | Select-Object DisplayName, DisplayVersion, Publisher, InstallDate | Format-Table –AutoSize

 

반응형

댓글