Files
management-scripts/Uninstall-EmberkomCloudBackup.ps1
T

9 lines
268 B
PowerShell

## Install and import additional Powershell modules
Install-MSP360Module
Import-Module -Name MSP360
## Uninstall the agent
Write-Output "Uninstalling Emberkom Cloud Backup agent"
Try { Remove-MBSAgent -RemoveSettings -Force }
Catch { LogErr $_.Exception.Message }