I'm adding VM's to Veeam Backup job, but I have a problem and I'm not able to find solution from API-reference.
So, when I add new VM to backup job, it always selects 'Enable application-aware processing', and I don't know how to prevent this? I don't want to change that setting, just add VM to backup job.
Example of XML that is used to add VM to job is:
Code: Select all
<?xml version="1.0" encoding="utf-8"?>
<CreateObjectInJobSpec xmlns="http://www.veeam.com/ent/v1.0" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<HierarchyObjRef>urn:VMware:VM:bf5f2612-8d93-476c-a5f9-7da1922eb5a1.vm-48</HierarchyObjRef>
<HierarchyObjName>VMNAME</HierarchyObjName>
<Order>0</Order>
<GuestProcessingOptions>
<AppAwareProcessingMode>Disabled</AppAwareProcessingMode>
<FileSystemIndexingMode>ExceptSpecifiedFolders</FileSystemIndexingMode>
<IncludedIndexingFolders/>
<ExcludedIndexingFolders>
<Path>%windir%</Path>
<Path>%ProgramFiles%</Path>
<Path>%TEMP%</Path>
</ExcludedIndexingFolders>
<CredentialsId/>
</GuestProcessingOptions>
</CreateObjectInJobSpec>