guard to exit script if agent is installed
This commit is contained in:
@@ -15,34 +15,32 @@ switch ( $Edition.ToLower() ) {
|
|||||||
# Install and import additional Powershell module
|
# Install and import additional Powershell module
|
||||||
Import-MSP360Module
|
Import-MSP360Module
|
||||||
|
|
||||||
# Install the agent if it's not currently installed
|
# Exit this script if the agent is already installed
|
||||||
If ( -not $(Get-MBSAgent) ) {
|
If ( $(Get-MBSAgent) ) {
|
||||||
|
Microsoft.Powershell.Utility\Write-Output "Backup agent is already installed. This script will now exit."
|
||||||
|
Return
|
||||||
|
}
|
||||||
|
|
||||||
# Download the installer
|
# Download the installer
|
||||||
$Installer = Download-File -URL $URL
|
$Installer = Download-File -URL $URL
|
||||||
|
# Install the agent
|
||||||
# Install the agent
|
Write-Output "Installing Emberkom Cloud Backup agent"
|
||||||
Write-Output "Installing Emberkom Cloud Backup agent"
|
Try { Start-Process "${Installer}" -ArgumentList "/S" -Wait }
|
||||||
Try { Start-Process "${Installer}" -ArgumentList "/S" -Wait }
|
Catch { Write-Error $_.Exception.Message }
|
||||||
Catch { Write-Error $_.Exception.Message }
|
# Add backup user to installed product
|
||||||
|
Try {
|
||||||
# Add backup user to installed product
|
|
||||||
Try {
|
|
||||||
$MSP360Password = ConvertTo-SecureString -string $MSP360Password -AsPlainText -Force
|
$MSP360Password = ConvertTo-SecureString -string $MSP360Password -AsPlainText -Force
|
||||||
Write-Output "Adding backup user account: ${MSP360Username}"
|
Write-Output "Adding backup user account: ${MSP360Username}"
|
||||||
Add-MBSUserAccount -User $MSP360Username -Password $MSP360Password
|
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 }
|
||||||
|
# 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 }
|
||||||
|
|
||||||
# Delete the desktop icon
|
# Delete the desktop icon
|
||||||
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 Backup.LNK" ) { Remove-Item -Path "${Env:PUBLIC}\Desktop\Emberkom Backup.LNK" -Force -ErrorAction SilentlyContinue }
|
||||||
|
|||||||
Reference in New Issue
Block a user