Get-VBRRepositoryMountServerOptions
Short Description
Returns settings of a mount server associated with a backup repository.
Applies to
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 CBackupRepository object. To get this object, run the Get-VBRBackupRepository cmdlet. | True | Named | True (ByValue, ByPropertyName) |
<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 Google Cloud Repository external repository.
$repository = Get-VBRBackupRepository -Name "Google Cloud Repository" $mount_server_settings = Get-VBRRepositoryMountServerOptions -Repository $repository |
Perform the following steps:
- Run the Get-VBRBackupRepository cmdlet. Specify the Name parameter value. Save the result to the $repository variable.
- Run the Get-VBRRepositoryMountServerOptions cmdlet. Set the $repository variable as the Repository parameter value. Save the result to the $mount_server_settings variable to use it with other cmdlets.
Related Commands