Get-VBRRepositoryMountServerOptions
Short Description
Returns settings of a mount server associated with a backup repository.
Platform: VMware, Hyper-V
Product Edition: Standard, Enterprise, Enterprise Plus, Veeam Universal License
Syntax
|
Get-VBRRepositoryMountServerOptions -Repository <CBackupRepository> [<CommonParameters>] |
Detailed Description
This cmdlet returns the VBRRepositoryMountServerOptions object. This object contains settings of a mount server associated with a backup repository.
Parameters
|
Parameter |
Description |
Type |
Required |
Position |
Accept Pipeline Input |
|---|---|---|---|---|---|
|
Repository |
Specifies the backup repository with which the mount server is associated. The cmdlet will return the settings of this mount server.
Accepts the |
|
True |
Named |
True (ByPropertyName, ByValue) |
<CommonParameters>
This cmdlet supports Microsoft PowerShell common parameters. For more information on common parameters, see Microsoft Docs.
Output Object
VBRRepositoryMountServerOptions
Examples
Getting Mount Server Settings for Backup Repository
This example shows how to return settings of the mount server associated with the Linux-XFS repository.
|
$repository = Get-VBRBackupRepository -Name "Linux-XFS Repository" $mount_server_settings = Get-VBRRepositoryMountServerOptions -Repository $repository |
Perform the following steps:
- Run the
Get-VBRBackupRepositoryReturns a list of backup repositories. cmdlet. Specify theNameparameter value. Save the result to the$repositoryvariable. - Run the
Get-VBRRepositoryMountServerOptionscmdlet. Set the$repositoryvariable as theRepositoryparameter value. Save the result to the$mount_server_settingsvariable to use it with other cmdlets.
Related Commands
Get-VBRBackupRepositoryReturns a list of backup repositories.