The export file is an .xml file and can be edited with a text editor.
Here is how to make some useful changes.
In the export file, the <login> tags include the user name and the <password> tags include the user password.
To modify credentials, change the <login> and <password> tags in the corresponding sections:
Pay special attention to modifying the <password> tag. The tag that contains an encrypted password looks like <password encrypted="true">...</password>.
To change the encrypted password
acronis_encrypt UserPassword#1
(here UserPassword#1 is the password you want to encrypt).
<password encrypted="true">XXXYYYZZZ888</password>
The acronis_encrypt utility is available on any machine where Acronis Backup Management Console or Acronis Backup command-line utility (acrocmd) is installed. The path to the utility is as follows:
How to make a backup plan use the agent's credentials
Before importing or deploying the export file, delete the value of the required <login> tag. Then the imported or deployed plan will use credentials of the agent service.
Example
To make the backup plan run under the agent's credentials, find the <login> tag in the <plan><options><common_parameters> section. The tag looks like follows:
<login>
Administrator
</login>
<password encrypted="true">
XXXYYYZZZ888
</password>
Delete the value of the <login> tag, so that the tag looks like follows:
<login>
</login>
<password encrypted="true">
XXXYYYZZZ888
</password>
How to change items to back up
Replacing a directly specified item with another directly specified item
Inside the <plan><targets><inclusions> section:
Replacing a directly specified item with a selection template
Inside the <plan><options><specific><inclusion_rules> section:
Example
The following example illustrates how to replace a directly specified item with selection templates.
The original section:
<specific>
<backup_type>
disks
</backup_type>
<disk_level_options />
<file_level_options />
<inclusion_rules />
<specific>
The section after applying the selection templates:
<specific>
<backup_type>
disks
</backup_type>
<disk_level_options />
<file_level_options />
<inclusion_rules>
<rules_type>
disks
</rules_type>
<rules>
<rule>
[BOOT]
</rule>
<rule>
[SYSTEM]
</rule>
</rules>
</inclusion_rules>
<specific>