Files
management-scripts/Uninstall-EmberkomCloudBackup.ps1
T

8 lines
243 B
PowerShell
Raw Normal View History

2023-12-07 12:06:38 -05:00
# Install and import additional Powershell modules
Import-MSP360Module
2021-12-22 10:53:03 -05:00
2023-12-07 12:06:38 -05:00
# Uninstall the agent
2023-10-05 13:11:38 -04:00
Write-Output "Uninstalling Emberkom Cloud Backup agent"
2022-12-15 14:23:26 -05:00
Try { Remove-MBSAgent -RemoveSettings -Force }
2023-10-05 13:17:18 -04:00
Catch { Write-Error $_.Exception.Message }