Powershell Uninstall String finden

Den Uninstall String einer Applikation mittels der Powershell finden

Hierzu habe ich mal ein paar Beispiele bereitgestellt.

Powershell anzeigen

Get-ChildItem -Path HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall, HKLM:\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall | Get-ItemProperty |

Where-Object {$_.DisplayName -match “Acronis True Image” } | Select-Object -Property DisplayName, UninstallString

Get-ChildItem -Path HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall, HKLM:\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall | Get-ItemProperty |

Where-Object {$_.DisplayName -like “*DriverAgent*” } | Select-Object -Property DisplayName, UninstallString

Get-ChildItem -Path HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall, HKLM:\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall | Get-ItemProperty | Where-Object {$_.DisplayName -like “*AI Suite*” } | Select-Object -Property DisplayName, UninstallString

uninstall string

Powershell Uninstall String finden