1 2 3 4 5 6 7 8 9 10 11 |
# Leer las partes del Registro de Windows que hacen referencia al software Get-ItemProperty -Path 'HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\*', 'HKLM:\SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\Uninstall\*', 'HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\*', 'HKCU:\SOFTWARE\WOW6432Node\Microsoft\Windows\CurrentVersion\Uninstall\*' -ErrorAction Ignore | # Listar items que tengan la propiedad Display Where-Object DisplayName | # Mostrar los valores Select-Object -Property DisplayName, DisplayVersion, UninstallString, InstallDate | # Ordenar por DisplayName Sort-Object -Property DisplayName |