Purpose
Check the software install in the Windows computer
COMMAND: Get-ItemProperty HKLM:\Software\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\* | Select-Object DisplayName, Publisher, DisplayVersion, InstallDate | Format-Table -AutoSize
Description: All software install
COMMAND: 
Get-ItemProperty 
HKLM:\Software\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\* |
 Select-Object DisplayName, DisplayVersion, Publisher, InstallDate | 
where {$_.DisplayName -Like "AMD*"} | Format-Table -AutoSize
 
Description: Software install with "AMD" in the description
   by GoN | Published: Mar 1, 2022 | Last Updated: 
 
 
No hay comentarios:
Publicar un comentario