Syntax
Get-VIProperty [[-Name] <String[]>] [[-ObjectType] <String[]>] [-DeclaredOnly] [<CommonParameters>]Related Commands
Online versionDetailed Description
Retrieves the extended properties and filters them by using the provided cmdlet parameters.Parameters
Return Type
VIPropertyNotes
Examples
-------------- Example 1 --------------
Get-VIProperty -Name "property*"
Retrieve all custom properties that match the specified name pattern.
-------------- Example 2 --------------
Get-VIProperty -ObjectType 'VirtualMachine'
Retrieve all custom properties for the specified object type.
-------------- Example 3 --------------
Get-VIProperty -ObjectType 'VirtualMachine' -DeclaredOnly
Retrieve all custom properties for the specified object type that are not inherited.