Files
management-scripts/Uninstall-EmberkomCloudBackup.ps1
2023-12-07 12:06:38 -05:00

8 lines
243 B
PowerShell

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