Files
management-scripts/Uninstall-EmberkomCloudBackup.ps1
T

9 lines
262 B
PowerShell
Raw Normal View History

2021-12-22 10:53:03 -05:00
## Install and import additional Powershell modules
Install-MSP360Module
Import-Module -Name MSP360
## Uninstall the agent
LogMsg "Uninstalling Emberkom Cloud Backup agent"
2022-12-15 14:23:26 -05:00
Try { Remove-MBSAgent -RemoveSettings -Force }
2021-12-22 10:53:03 -05:00
Catch { LogErr $_.Exception.Message }