Syntax
Get-View [-VIObject] <VIObject[]> [-Property <String[]>] [<CommonParameters>]Related Commands
Online versionDetailed Description
Returns the vSphere .Net view objects that correspond to the specified search criteria. The cmdlet retrieves the vSphere .NET view objects specified by their IDs or by their corresponding vSphere inventory objects (VIObject). A view object ID is a <type>-<value> string. For objects with constant names such as AlarmManager and ServiceInstance, the ID format is <type> (see the examples).Parameters
| Name | Type | Description | Required? | Pipeline Input | Default Value |
|---|---|---|---|---|---|
| Id | ManagedObjectReference[] | Specify the IDs of the .NET View objects you want to retrieve. A view object ID is a <type>-<value> string. For objects with constant names such as AlarmManager and ServiceInstance, the ID format is <type> (see the examples). | true | false | |
| VIObject | VIObject[] | Specify the corresponding vSphere managed object of the .NET View object you want to retrieve. | true | true (ByValue) | |
| Filter | Hashtable | Specify a hash of <name>-<value> pairs, where <name> represents the property value to test, and <value> represents a pattern the property must match. If more than one pair is present, all the patterns must match. | false | false | |
| Property | String[] | Specify the properties of the view object you want to retrieve. If no value is given, all properties are shown. | false | false | |
| SearchRoot | ManagedObjectReference | Specify a starting point for the search (in the context of the inventory). | false | false | |
| Server | VIServer[] | Specify the vSphere servers on which you want to run the cmdlet. If no value is given to this parameter, the command runs on the default servers. For more information about default servers, see the description of Connect-VIServer. | false | false | |
| ViewType | Type | Specify the type of the view objects you want to retrieve. | true | false |
Return Type
VMware.Vim.ViewBase or VMware.Vim.EntityViewBaseNotes
Examples
-------------- Example 1 --------------
$vm = Get-View -ViewType VirtualMachine -Filter @{"Name" = "VM"}
$hostView = Get-View -ID $vm.Runtime.Host
$hostView.Summary.RuntimeGets the VM virtual machine using a filter by name, populates the view object and retrieves the runtime information.