Skip to content

Commit

Permalink
(#20) rename packages for VBM
Browse files Browse the repository at this point in the history
  • Loading branch information
mkevenaar committed Mar 20, 2022
1 parent 2678117 commit 33e3b7c
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 13 deletions.
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,11 @@ Depending on the function of the machine you are running this on, you can use se
|vbr_proxy.ps1|Install Veeam Backup & Replication proxy server **(soon)**|
|vbr_repository.ps1|Install Veeam Backup & Replication repository server **(soon)**|

### VBO Scripts
### VBM Scripts

***
:warning: The filenames still have the old VBO name for backward compatibility.
***

|Script|Function|
|-|-|
Expand Down
3 changes: 2 additions & 1 deletion vbo_scripts/common_packages.ps1
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
# Description: Boxstarter script
# Author: Maurice Kevenaar
# This boxstarter scrips installs common required packages for VBO.
# This boxstarter scrips installs common required packages for VBM.


New-Item -Path "$env:systemdrive\ProgramData\ChocoCache" -ItemType directory -Force | Out-Null
$common = "--cacheLocation=`"$env:systemdrive\ProgramData\ChocoCache`""

choco upgrade DotNet4.7.2 $common
choco upgrade veeam-backup-for-microsoft-365-iso $common
2 changes: 1 addition & 1 deletion vbo_scripts/vbo_all.ps1
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Description: Boxstarter script
# Author: Maurice Kevenaar
# This boxstarter scrips installs all required parts of VBO.
# This boxstarter scrips installs all required parts of VBM.

$bstrappackage = "-bootstrapPackage"
$scriptsDir = $Boxstarter['ScriptToCall']
Expand Down
14 changes: 7 additions & 7 deletions vbo_scripts/vbo_management.ps1
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Description: Boxstarter script
# Author: Maurice Kevenaar
# This boxstarter scrips installs all required parts of VBO.
# This boxstarter scrips installs all required parts of VBM.

New-Item -Path "$env:systemdrive\ProgramData\ChocoCache" -ItemType directory -Force | Out-Null
$common = "--cacheLocation=`"$env:systemdrive\ProgramData\ChocoCache`""
Expand All @@ -20,9 +20,9 @@ $commonDir += "\common_scripts"
Invoke-Expression "${commonDir}\setup_chocolatey.ps1"
Invoke-Expression "${scriptsDir}\common_packages.ps1"

Write-Output "Installing VBO Management console"
choco upgrade veeam-backup-for-microsoft-office-365-console $common
choco upgrade veeam-explorer-for-microsoft-exchange-o365 $common
choco upgrade veeam-explorer-for-microsoft-sharepoint-o365 $common
choco upgrade veeam-explorer-for-microsoft-teams-o365 $common
choco upgrade veeam-backup-for-microsoft-office-365-management $common
Write-Output "Installing VBM Management console"
choco upgrade veeam-backup-for-microsoft-365-console $common
choco upgrade veeam-explorer-for-microsoft-exchange-m365 $common
choco upgrade veeam-explorer-for-microsoft-sharepoint-m365 $common
choco upgrade veeam-explorer-for-microsoft-teams-m365 $common
choco upgrade veeam-backup-for-microsoft-365-management $common
8 changes: 5 additions & 3 deletions vbo_scripts/vbo_server.ps1
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Description: Boxstarter script
# Author: Maurice Kevenaar
# This boxstarter scrips installs the server part of VBO.
# This boxstarter scrips installs the server part of VBM.

New-Item -Path "$env:systemdrive\ProgramData\ChocoCache" -ItemType directory -Force | Out-Null
$common = "--cacheLocation=`"$env:systemdrive\ProgramData\ChocoCache`""
Expand All @@ -20,5 +20,7 @@ $commonDir += "\common_scripts"
Invoke-Expression "${commonDir}\setup_chocolatey.ps1"
Invoke-Expression "${scriptsDir}\common_packages.ps1"

Write-Output "Installing VBO Server"
choco upgrade veeam-backup-for-microsoft-office-365 --params '"/server /powershell"' $common
Write-Output "Installing VBM Server"
choco upgrade veeam-backup-for-microsoft-365-server $common
choco upgrade veeam-backup-for-microsoft-365-console --params '"/powershell"' $common
choco upgrade veeam-backup-for-microsoft-365-rest-api $common

0 comments on commit 33e3b7c

Please sign in to comment.