Skip to content

Commit 8c4876d

Browse files
authored
Merge pull request #237562 from sooryar12/patch-1
Update backup-mabs-unattended-install.md
2 parents 275a303 + 473819a commit 8c4876d

File tree

1 file changed

+17
-11
lines changed

1 file changed

+17
-11
lines changed

articles/backup/backup-mabs-unattended-install.md

Lines changed: 17 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
2-
title: Silent installation of Azure Backup Server V2
3-
description: Use a PowerShell script to silently install Azure Backup Server V2. This kind of installation is also called an unattended installation.
2+
title: Silent installation of Azure Backup Server V4
3+
description: Use a PowerShell script to silently install Azure Backup Server V4. This kind of installation is also called an unattended installation.
44
ms.topic: conceptual
55
ms.date: 11/13/2018
66
author: jyothisuri
@@ -10,13 +10,20 @@ ms.author: jsuri
1010

1111
Learn how to run an unattended installation of Azure Backup Server.
1212

13-
These steps don't apply if you're installing Azure Backup Server V1.
13+
These steps don't apply if you're installing older version of Azure Backup Server like MABS V1, V2 and V3.
1414

1515
## Install Backup Server
1616

17-
1. On the server that hosts Azure Backup Server V2 or later, create a text file. (You can create the file in Notepad or in another text editor.) Save the file as MABSSetup.ini.
18-
19-
2. Paste the following code in the MABSSetup.ini file. Replace the text inside the brackets (\< \>) with values from your environment. The following text is an example:
17+
1. Ensure that there's a directory under Program Files called "Microsoft Azure Recovery Services Agent" by running the following command in an elevated command prompt.
18+
```cmd
19+
mkdir "C:\Program Files\Microsoft Azure Recovery Services Agent"
20+
```
21+
2. Install the pre-requisites for MABS ahead of time in an elevated command prompt. The following command can result in an automatic server restart, but if that does not happen, a manual restart is recommended.
22+
```cmd
23+
start /wait dism.exe /Online /Enable-feature /All /FeatureName:Microsoft-Hyper-V /FeatureName:Microsoft-Hyper-V-Management-PowerShell /quiet
24+
```
25+
3. On the server that hosts Azure Backup Server V4 or later, create a text file. (You can create the file in Notepad or in another text editor.) Save the file as MABSSetup.ini.
26+
4. Paste the following code in the MABSSetup.ini file. Replace the text inside the brackets (\< \>) with values from your environment. The following text is an example:
2027

2128
```text
2229
[OPTIONS]
@@ -28,18 +35,17 @@ These steps don't apply if you're installing Azure Backup Server V1.
2835
SQLMachinePassword=<admin password>
2936
SQLMachineDomainName=<machine domain>
3037
ReportingMachineName=localhost
31-
ReportingInstanceName=<reporting instance name>
38+
ReportingInstanceName=SSRS
3239
SqlAccountPassword=<admin password>
3340
ReportingMachineUserName=<username>
3441
ReportingMachinePassword=<reporting admin password>
3542
ReportingMachineDomainName=<domain>
36-
VaultCredentialFilePath=<vault credential full path and complete name>
43+
VaultCredentialFilePath=<vault credential full path and complete name, without spaces in both>
3744
SecurityPassphrase=<passphrase>
38-
PassphraseSaveLocation=<passphrase save location>
45+
PassphraseSaveLocation=<passphrase save location, an existing directory where the passphrase file can be created>
3946
UseExistingSQL=<1/0 use or do not use existing SQL>
4047
```
41-
42-
3. Save the file. Then, at an elevated command prompt on the installation server, enter this command:
48+
5. Save the file. Then, at an elevated command prompt on the installation server, enter this command:
4349

4450
```cmd
4551
start /wait <cdlayout path>/Setup.exe /i /f <.ini file path>/setup.ini /L <log path>/setup.log

0 commit comments

Comments
 (0)