Find-VBRViStoragePolicy
Short Description
Looks for storage policy profiles.
Applies to
Platform: VMware
Product Edition: Standard, Enterprise, Enterprise Plus
Syntax
Find-VBRViStoragePolicy -Server <CHost> [-Datastore <CViDatastoreItem>] [<CommonParameters>] -OR- Find-VBRViStoragePolicy -Server <CHost> [-Datastore <CViDatastoreItem>] [-Name <string[]>] [<CommonParameters>] -OR- Find-VBRViStoragePolicy -Server <CHost> [-Datastore <CViDatastoreItem>] [-Id <string[]>] [<CommonParameters>] |
Detailed Description
This cmdlet returns VMware storage policy profiles created on a vCenter Server.
You can get the list of all storage policy profiles on the specified server or look for profiles directly by name or ID.
Parameters
Parameter | Description | Required | Position | Accept | Accept |
Server | Specifies the vCenter Server where the storage policy profiles are created. | True | Named | True (ByValue, | False |
Datastore | Specifies the datastore. The cmdlet will return storage policy profiles compatible with this datastore. | False | Named | False | False |
Name | Specifies the array of storage policy profile names. The cmdlet will return profiles with these names. | False | Named | False | True |
Id | Specifies the array of storage policy profile IDs. The cmdlet will return profiles with these IDs. | False | Named | False | 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 1
This command returns all storage policy profiles registered for the Veeam.Local host.
The host is obtained with Get-VBRServer and assigned to the '$server' variable.
Example 2
This command returns storage policy profile named "Virtual SAN Default Storage Policy" registered on the Veeam.Local host.
The host is obtained with Get-VBRServer and piped down.
Get-VBRServer -Name "Veeam.Local" | Find-VBRViStoragePolicy -Name "Virtual SAN Default Storage Policy" |
Example 3
This command returns all storage policy profiles registered for the Veeam.Local host.
The host is obtained with Get-VBRServer and assigned to the '$server' variable.
$server = Get-VBRServer -Name "Veeam.Local" $datastore = Find-VBRViDatastore -Name "VeeamDatastore" Find-VBRViStoragePolicy -Server $server -Datastore $datastore -Name "Virtual SAN Default Storage Policy" |
Related Commands