Syntax
Get-VMHostImageProfile -Entity <VIObjectCore> [<CommonParameters>]Related Commands
Set-ESXImageProfileDetailed Description
Gets the image profile currently associated with the specified ESXi host. Use the Get-VMHost cmdlet to retrieve the host.Parameters
Name | Type | Description | Required? | Pipeline Input | Default Value |
---|---|---|---|---|---|
Entity | VIObjectCore | Host to retrieve the image profile information for. | true | true (ByValue) |
Return Type
VMware.ImageBuilder.Types.ImageProfileNotes
Examples
-------------- Example 1 --------------
C:\PS> Get-VMHostImageProfile -Entity h1
Get the image profile associated with host "h1".
-------------- Example 2 --------------
C:\PS> Get-VMHostImageProfile -Entity (Get-VMHost "h1")
Get the image profile associated with host "h1".