New-VBRComputerIndexingOptions
Short Description
Creates indexing settings for Veeam Agent backup jobs.
Applies to
Product Edition: Community, Standard, Enterprise, Enterprise Plus, Veeam Universal License
Syntax
New-VBRComputerIndexingOptions -BackupObject <Object> -OSPlatform <VBRAgentType> {Windows | Linux | Mac} -IndexingMode <VBRIndexingMode> {Disable | IndexEverything | IndexIncludedOnly | IndexEverythingExceptExcluded}[-IndexingInclusion <string[]>] [-IndexingExclusion <string[]>] [<CommonParameters>] |
Detailed Description
This cmdlet creates the VBRComputerIndexingOptions object that contains file indexing settings for Veeam Agent backup jobs.
Parameters
Parameter | Description | Required | Position | Accept | Accept |
---|---|---|---|---|---|
BackupObject | Specifies the protection group, for which you want to add indexing settings. | True | Named | True (ByValue) |
|
OSPlatform | Specifies the OS of the protected computers:
| True | Named | False |
|
IndexingMode | Specifies indexing scope settings:
NOTE: Veeam Backup & Replication will exclude the system directories from indexing. | True | Named | False |
|
IndexingInclusion | For the IndexIncludedOnly mode. Specifies the list of the folders that you want to index. | False | Named | False |
|
IndexingExclusion | For the IndexEverythingExceptExcluded mode. Specifies the list of the folders that you want to exclude from indexing. | False | Named | False |
|
<CommonParameters>
This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see the About CommonParameters section of Microsoft Docs.
Return Type
Example
This example shows how to create indexing settings for a Veeam Agent job that backs up Linux computers. Veeam Backup & Replication will index everything except for:
- System directories.
- The /home/administrator/videos/ directory.
To create indexing settings for the Veeam Agent backup job, perform the following steps:
- Run Get-VBRProtectionGroup to get the protection group. Save the result to the $group variable.
- Run New-VBRComputerIndexingOptions with the $group variable. Use the IndexingMode parameter to specify the indexing scope and the IdexingExclusion parameter to specify the exclusions.
$group = Get-VBRProtectionGroup -Name "Linux Group" New-VBRComputerIndexingOptions -BackupObject $group -OSPlatform Linux -IndexingMode IndexEverythingExceptExcluded -IndexingExclusion "/home/administrator/videos/" |
Related Commands