This commit is contained in:
2023-12-07 12:06:38 -05:00
parent 1f69a746c9
commit b698f4337d
3 changed files with 33 additions and 33 deletions
+1 -2
View File
@@ -10,8 +10,7 @@ switch ( $Edition.ToLower() ) {
} }
# Install and import additional Powershell module # Install and import additional Powershell module
Install-MSP360Module Import-MSP360Module
Import-Module -Name MSP360
# Add backup user to installed product # Add backup user to installed product
#Try { #Try {
+29 -27
View File
@@ -1,7 +1,4 @@
# This script requires the $Edition variable is set from the RMM script # Specify URL to "Backup for Windows" agent installer
If (! $Edition ) { $Edition = 'desktop' }
# Specify URL to "Backup for Windows" agent installer
$ECB_WIN_URL = 'https://s3.amazonaws.com/cb_setups/MBS/53CFB286-7A97-4FDF-8CFA-475C0DB63A9A/Brands/FB8308E2-448A-4645-A5F6-A3632A7E57F4/EmberkomCloudBackup_v7.9.1.152_ALLEDITIONS_Setup.exe' $ECB_WIN_URL = 'https://s3.amazonaws.com/cb_setups/MBS/53CFB286-7A97-4FDF-8CFA-475C0DB63A9A/Brands/FB8308E2-448A-4645-A5F6-A3632A7E57F4/EmberkomCloudBackup_v7.9.1.152_ALLEDITIONS_Setup.exe'
# Specify URL to "Backup Virtual Machine Edition" agent installer # Specify URL to "Backup Virtual Machine Edition" agent installer
@@ -16,32 +13,37 @@ switch ( $Edition.ToLower() ) {
} }
# Install and import additional Powershell module # Install and import additional Powershell module
Install-MSP360Module Import-MSP360Module
Import-Module -Name MSP360
# Download the installer # Install the agent if it's not currently installed
$Installer = Download-File -URL $URL If ( -not $(Get-MBSAgent) ) {
# Install the agent # Download the installer
Write-Output "Installing Emberkom Cloud Backup agent" $Installer = Download-File -URL $URL
Try { Start-Process "${Installer}" -ArgumentList "/S" -Wait }
Catch { Write-Error $_.Exception.Message }
# Add backup user to installed product # Install the agent
Try { Write-Output "Installing Emberkom Cloud Backup agent"
$MSP360Password = ConvertTo-SecureString -string $MSP360Password -AsPlainText -Force Try { Start-Process "${Installer}" -ArgumentList "/S" -Wait }
Write-Output "Adding backup user account: ${MSP360Username}" Catch { Write-Error $_.Exception.Message }
Add-MBSUserAccount -User $MSP360Username -Password $MSP360Password
# Add backup user to installed product
Try {
$MSP360Password = ConvertTo-SecureString -string $MSP360Password -AsPlainText -Force
Write-Output "Adding backup user account: ${MSP360Username}"
Add-MBSUserAccount -User $MSP360Username -Password $MSP360Password
}
Catch { Write-Error $_.Exception.Message }
# Wait a few seconds to let the agent check-in
Start-Sleep -Seconds 10
# Set the agent edition
# Note: the product edition must be set *after* the user is added
Write-Output "Setting Emberkom Cloud Backup agent edition to ""$AgentEdition"""
Try { Set-MBSAgentSetting -Edition $AgentEdition -Verbose }
Catch { Write-Error $_.Exception.Message }
} }
Catch { Write-Error $_.Exception.Message }
# Set the agent edition
# Note: the product edition must be set *after* the user is added
Write-Output "Setting Emberkom Cloud Backup agent edition to ""$AgentEdition"""
Try { Set-MBSAgentSetting -Edition $AgentEdition -Verbose }
Catch { Write-Error $_.Exception.Message }
# Delete the desktop icon # Delete the desktop icon
Write-Output "Removing desktop icon" If ( Test-Path "${Env:PUBLIC}\Desktop\Emberkom Backup.LNK" ) { Remove-Item -Path "${Env:PUBLIC}\Desktop\Emberkom Backup.LNK" -Force -ErrorAction SilentlyContinue }
Remove-Item -Path "${Env:PUBLIC}\Desktop\Emberkom Backup.LNK" -Force -ErrorAction SilentlyContinue If ( Test-Path "${Env:PUBLIC}\Desktop\Emberkom Cloud Backup.LNK" ) { Remove-Item -Path "${Env:PUBLIC}\Desktop\Emberkom Cloud Backup.LNK" -Force -ErrorAction SilentlyContinue }
Remove-Item -Path "${Env:PUBLIC}\Desktop\Emberkom Cloud Backup.LNK" -Force -ErrorAction SilentlyContinue
+3 -4
View File
@@ -1,8 +1,7 @@
## Install and import additional Powershell modules # Install and import additional Powershell modules
Install-MSP360Module Import-MSP360Module
Import-Module -Name MSP360
## Uninstall the agent # Uninstall the agent
Write-Output "Uninstalling Emberkom Cloud Backup agent" Write-Output "Uninstalling Emberkom Cloud Backup agent"
Try { Remove-MBSAgent -RemoveSettings -Force } Try { Remove-MBSAgent -RemoveSettings -Force }
Catch { Write-Error $_.Exception.Message } Catch { Write-Error $_.Exception.Message }