Files
management-scripts/Install-EmberkomCloudBackup.ps1
T

54 lines
3.0 KiB
PowerShell
Raw Normal View History

2023-12-07 12:06:38 -05:00
# Specify URL to "Backup for Windows" agent installer
2024-02-21 16:53:28 -05:00
$ECB_WIN_URL = 'https://console.msp360.com/api/build/download?urlParams=OEFsMzhldm1SbjhaSDhBc2VtYkpUREM3Y2pJSzg0REU4dkVtR1pHREkxMGFFUk9qZXJnSXk5SUF0ei8wZlZOWTBzNG1zVDV0ckVMdStZVzBsam5uZklMVnZLeTBMVmxGNWt4VDhSMzNIL3RVVVVrUGVFTXlwNHh1T2orQ04vV1ljS0hScEI2TUZpODF2a1dqMCtVQ3NxV05yRnZLOTFNc3J4RTN1emhsemt4N01NT3ZPcVhsZjNBN2wxWUdBbTJ0T3E3V1JRVkM0cnNncFphd1pzc2NKQT09&brandId=fb8308e2-448a-4645-a5f6-a3632a7e57f4'
2021-09-22 14:51:23 -04:00
2022-12-15 13:33:26 -05:00
# Specify URL to "Backup Virtual Machine Edition" agent installer
2024-02-21 16:53:28 -05:00
$ECB_VMM_URL = 'https://console.msp360.com/api/build/download?urlParams=OEFsMzhldm1SbjhaSDhBc2VtYkpUREM3Y2pJSzg0REU4dkVtR1pHREkxMGFFUk9qZXJnSXk5SUF0ei8wZlZOWUpYM2xDY3ErMkpOVGpuWTRISDNFcGE1KzhLRmw0MmRsUkNrSndPdGtScityUnNOVldiRDdORmFSTWI0V2JINmo4cTkxSlA1WlNTZFQ4dHdhaDFsdzZhNEZpT2dxREV0SEp4a0cvVTZSUk9wVE1xZ0dIaW9wNEMzQ2l0ZDQ2enJpMlNiN2RPc0NHVkpsbmlCcmRxMEpCUT09&brandId=fb8308e2-448a-4645-a5f6-a3632a7e57f4'
2021-09-22 14:51:23 -04:00
2022-12-15 13:33:26 -05:00
# Set the correct download URL and agent edition
2021-09-22 14:51:23 -04:00
switch ( $Edition.ToLower() ) {
'server' { $URL = $ECB_WIN_URL; $AgentEdition = 'baremetal' }
'desktop' { $URL = $ECB_WIN_URL; $AgentEdition = 'desktop' }
'vm' { $URL = $ECB_VMM_URL; $AgentEdition = 'vmedition' }
default { $URL = $ECB_WIN_URL; $AgentEdition = 'desktop' }
}
2022-12-15 14:18:31 -05:00
# Install and import additional Powershell module
2023-12-07 12:06:38 -05:00
Import-MSP360Module
2024-01-19 21:39:13 -05:00
# Exit this script if the agent is already installed
2024-02-01 11:02:16 -05:00
If ( $(Get-MBSAgent -ErrorAction SilentlyContinue) ) {
2024-01-19 21:39:13 -05:00
Microsoft.Powershell.Utility\Write-Output "Backup agent is already installed. This script will now exit."
Return
}
2023-12-07 12:06:38 -05:00
2024-01-19 21:39:13 -05:00
# Download the installer
$Installer = Download-File -URL $URL
2024-02-01 11:02:16 -05:00
2024-01-19 21:39:13 -05:00
# Install the agent
Write-Output "Installing Emberkom Cloud Backup agent"
Try { Start-Process "${Installer}" -ArgumentList "/S" -Wait }
Catch { Write-Error $_.Exception.Message }
2024-02-01 11:02:16 -05:00
2024-01-19 21:39:13 -05:00
# Add backup user to installed product
2024-02-01 11:02:16 -05:00
Write-Output "Adding backup user account: ${MSP360Username}"
Try { Add-MBSUserAccount -User $MSP360Username -Password $(ConvertTo-SecureString -string $MSP360Password -AsPlainText -Force) }
2024-01-19 21:39:13 -05:00
Catch { Write-Error $_.Exception.Message }
2024-02-01 11:02:16 -05:00
2024-01-19 21:39:13 -05:00
# Wait a few seconds to let the agent check-in
Start-Sleep -Seconds 10
2024-02-01 11:02:16 -05:00
2024-01-19 21:39:13 -05:00
# 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 {
Switch ([string]::IsNullOrEmpty($MasterPassword)) {
$true { Set-MBSAgentSetting -Edition $AgentEdition -Verbose }
2024-02-01 11:02:16 -05:00
$false { Set-MBSAgentSetting -Edition $AgentEdition -MasterPassword $(ConvertTo-SecureString -String $MasterPassword -AsPlainText -Force) -Verbose }
}
}
2024-01-19 21:39:13 -05:00
Catch { Write-Error $_.Exception.Message }
2021-10-08 05:41:49 -04:00
2022-12-15 13:33:26 -05:00
# Delete the desktop icon
2023-12-07 12:06:38 -05:00
If ( Test-Path "${Env:PUBLIC}\Desktop\Emberkom Backup.LNK" ) { 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 }