Files
management-scripts/Uninstall-EmberkomCloudBackup.ps1
T

9 lines
273 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 { Write-Error $_.Exception.Message }