major change to override Write-Error func

This commit is contained in:
2023-10-05 13:17:18 -04:00
parent bbb4884818
commit 5f4b4565de
42 changed files with 114 additions and 114 deletions
+1 -1
View File
@@ -11,7 +11,7 @@ If ( IsAdmin )
$UninstallProgram = $UninstallString -replace ' -maintain plugin', ''
Write-Output "Running: ""${UninstallProgram}"" -uninstall"
Try { Start-Process "${UninstallProgram}" -ArgumentList "-uninstall" -Wait }
Catch { LogErr $_.Exception.Message }
Catch { Write-Error $_.Exception.Message }
}
Else { Write-Output "Adobe Flash Player is not installed" }
}