forked from norman/fusionpbx-install.sh-github-mirror
3 lines
273 B
PowerShell
3 lines
273 B
PowerShell
Function Get-Installed-App([string]$name) {
|
|
Get-ItemProperty HKLM:\Software\Microsoft\Windows\CurrentVersion\Uninstall\* | Where-Object DisplayName -like $name | Select-Object DisplayName, DisplayVersion, Publisher, InstallDate,UninstallString | Format-Table -AutoSize
|
|
} |