TUTOS.EU

Lister les logiciels installés sur un Windows en Powershell

Récupérer la liste des logiciels installés sur un Windows en Powershell

La technique consiste à lire des clés de registe.

Clear-host
Get-ItemProperty HKLM:\Software\Microsoft\Windows\CurrentVersion\Uninstall\* |  Select-Object DisplayName, DisplayVersion, Publisher, InstallDate | sort-object -property DisplayName | Format-Table –AutoSize
Get-ItemProperty HKLM:\SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\Uninstall\* |  Select-Object DisplayName, DisplayVersion, Publisher, InstallDate | sort-object -property DisplayName | Format-Table –AutoSize
Lien vers le fichier : cliquez ici Copier le code

Pages Web

Site WebDescription
SS64A script to enumerate the software installed on one or more computers. It will include both 32 bit and 64 bit software.
Blogs.technet.microsoft.comUse PowerShell to Find Installed Software

Article(s) en relation(s)

2