14 lines
806 B
PowerShell
14 lines
806 B
PowerShell
If ( Test-Path "${Env:ProgramFiles(x86)}\MspPlatform\PME\unins000.exe" ) {
|
|
LogMsg "Uninstalling N-Central Patch Management Service Controller"
|
|
Start-Process "${Env:ProgramFiles(x86)}\MspPlatform\PME\unins000.exe" -ArgumentList "/SILENT" -Wait
|
|
}
|
|
|
|
If ( Test-Path "${Env:ProgramFiles(x86)}\MspPlatform\FileCacheServiceAgent\unins000.exe" ) {
|
|
LogMsg "Uninstalling N-Central File Cache Service Agent"
|
|
Start-Process "${Env:ProgramFiles(x86)}\MspPlatform\FileCacheServiceAgent\unins000.exe" -ArgumentList "/SILENT" -Wait
|
|
}
|
|
|
|
If ( Test-Path "${Env:ProgramFiles(x86)}\MspPlatform\RequestHandlerAgent\unins000.exe" ) {
|
|
LogMsg "Uninstalling N-Central Request Handler Agent"
|
|
Start-Process "${Env:ProgramFiles(x86)}\MspPlatform\RequestHandlerAgent\unins000.exe" -ArgumentList "/SILENT" -Wait
|
|
} |