This is an archive version of the document. To get the most up-to-date information, see the current version.

Disable-VBRJobGuestFSIndexing

Short Description

Disables job guest file system indexing option.

Applies to

Platform: VMware, Hyper-V

Product Edition: Standard, Enterprise, Enterprise Plus

Syntax

Disable-VBRJobGuestFSIndexing [-Job] <CBackupJob[]>  [<CommonParameters>]

Detailed Description

This cmdlet disables guest file system indexing in the selected job. The guest file system indexing settings are not deleted.

You can run this cmdlet with backup and replication jobs.

Parameters

Parameter

Description

Required

Position

Accept
Pipeline
Input

Accept
Wildcard
Characters

Job

Specifies the array of jobs. The cmdlet will disable guest file system indexing for these jobs.

True

1

True (ByValue,
ByProperty
Name)

False

<CommonParameters>

This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see the About CommonParameters section of Microsoft Docs.

Example 1

This command disables the guest file system indexing option in jobs named "Backup Job 01" and "Backup Job 02". The jobs object is obtained with Get-VBRJob and piped down.

Get-VBRJob -Name "Backup Job 01", "Backup Job 02" | Disable-VBRJobGuestFSIndexing

Example 2

This command disables the guest file system indexing option in the job represented by the $job variable. The job object is obtained with Get-VBRJob and assigned to the variable beforehand.

Disable-VBRJobGuestFSIndexing -Job $job

Related Commands

Get-VBRJob