cleanup comments
This commit is contained in:
@@ -1,13 +1,13 @@
|
|||||||
## This script requires the $Edition variable is set from the RMM script
|
# This script requires the $Edition variable is set from the RMM script
|
||||||
If (! $Edition ) { $Edition = 'desktop' }
|
If (! $Edition ) { $Edition = 'desktop' }
|
||||||
|
|
||||||
## Specify URL to "Backup for Windows" agent installer
|
# 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.8.1.350_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.8.1.350_ALLEDITIONS_Setup.exe'
|
||||||
|
|
||||||
## Specify URL to "Backup Virtual Machine Edition" agent installer
|
# Specify URL to "Backup Virtual Machine Edition" agent installer
|
||||||
$ECB_VMM_URL = 'https://s3.amazonaws.com/cb_setups/MBS/53CFB286-7A97-4FDF-8CFA-475C0DB63A9A/Brands/FB8308E2-448A-4645-A5F6-A3632A7E57F4/EmberkomCloudBackup_v7.8.1.350_VMWARE_Setup.exe'
|
$ECB_VMM_URL = 'https://s3.amazonaws.com/cb_setups/MBS/53CFB286-7A97-4FDF-8CFA-475C0DB63A9A/Brands/FB8308E2-448A-4645-A5F6-A3632A7E57F4/EmberkomCloudBackup_v7.8.1.350_VMWARE_Setup.exe'
|
||||||
|
|
||||||
## Set the correct download URL and agent edition
|
# Set the correct download URL and agent edition
|
||||||
switch ( $Edition.ToLower() ) {
|
switch ( $Edition.ToLower() ) {
|
||||||
'server' { $URL = $ECB_WIN_URL; $AgentEdition = 'baremetal' }
|
'server' { $URL = $ECB_WIN_URL; $AgentEdition = 'baremetal' }
|
||||||
'desktop' { $URL = $ECB_WIN_URL; $AgentEdition = 'desktop' }
|
'desktop' { $URL = $ECB_WIN_URL; $AgentEdition = 'desktop' }
|
||||||
@@ -15,16 +15,16 @@ switch ( $Edition.ToLower() ) {
|
|||||||
default { $URL = $ECB_WIN_URL; $AgentEdition = 'desktop' }
|
default { $URL = $ECB_WIN_URL; $AgentEdition = 'desktop' }
|
||||||
}
|
}
|
||||||
|
|
||||||
## Install and import additional Powershell module
|
# Install and import additional Powershell module
|
||||||
Install-MSP360Module
|
Install-MSP360Module
|
||||||
Import-Module -Name MSP360
|
Import-Module -Name MSP360
|
||||||
|
|
||||||
## Install the agent
|
# Install the agent
|
||||||
LogMsg "Installing Emberkom Cloud Backup agent"
|
LogMsg "Installing Emberkom Cloud Backup agent"
|
||||||
Try { Install-MBSAgent -URL $URL -Force -Wait }
|
Try { Install-MBSAgent -URL $URL -Force -Wait }
|
||||||
Catch { LogErr $_.Exception.Message }
|
Catch { LogErr $_.Exception.Message }
|
||||||
|
|
||||||
## Add backup user to installed product
|
# Add backup user to installed product
|
||||||
Try {
|
Try {
|
||||||
$MSP360Password = ConvertTo-SecureString -string $MSP360Password -AsPlainText -Force
|
$MSP360Password = ConvertTo-SecureString -string $MSP360Password -AsPlainText -Force
|
||||||
LogMsg "Adding backup user account: ${MSP360Username}"
|
LogMsg "Adding backup user account: ${MSP360Username}"
|
||||||
@@ -32,12 +32,12 @@ Try {
|
|||||||
}
|
}
|
||||||
Catch { LogErr $_.Exception.Message }
|
Catch { LogErr $_.Exception.Message }
|
||||||
|
|
||||||
## Set the agent edition
|
# Set the agent edition
|
||||||
## Note: the product edition must be set *after* the user is added
|
# Note: the product edition must be set *after* the user is added
|
||||||
LogMsg "Setting Emberkom Cloud Backup agent edition to ""$AgentEdition"""
|
LogMsg "Setting Emberkom Cloud Backup agent edition to ""$AgentEdition"""
|
||||||
Try { Set-MBSAgentSetting -Edition $AgentEdition -Verbose }
|
Try { Set-MBSAgentSetting -Edition $AgentEdition -Verbose }
|
||||||
Catch { LogErr $_.Exception.Message }
|
Catch { LogErr $_.Exception.Message }
|
||||||
|
|
||||||
## Delete the desktop icon
|
# Delete the desktop icon
|
||||||
"${Env:PUBLIC}\Desktop\Emberkom Backup.LNK",
|
"${Env:PUBLIC}\Desktop\Emberkom Backup.LNK",
|
||||||
"${Env:PUBLIC}\Desktop\Emberkom Cloud Backup.LNK" | Remove-File
|
"${Env:PUBLIC}\Desktop\Emberkom Cloud Backup.LNK" | Remove-File
|
||||||
Reference in New Issue
Block a user