Set-ESXImageProfileAssociation
Associates the specified image profile with the specified ESXi system. Currently, the Entities parameter can point only to ESXi hosts. You must have the "AutoDeploy.Profile.Edit" privilege on the root folder of vCenter Server to use this cmdlet. Apply-ESXImageProfile is an alias for Set-ESXImageProfileAssociation.
Syntax
[-Entities]
<VIObjectCore[]>
-ImageProfile <ImageProfile>
[CommonParameters]
-ImageProfile <ImageProfile>
[CommonParameters]
Parameters
Required | Parameter Name | Type | Position | Features | Description |
---|---|---|---|---|---|
required |
|
VIObjectCore[] | 1 |
|
Must be an ESXi host. Use the Get-VMHost PowerCLI cmdlet to find a host. | required |
|
ImageProfile | named |
|
Image profile to associate with the specified ESXi host. |
Output
Examples
Example 1
C:\PS> Set-ESXImageProfileAssociation "MyImage" "h1","h2"
Associate the "MyImage" image profile with the hosts named "h1" and "h2".
Example 2
C:\PS> $img = Get-ESXImageProfile -Name "MyImage"
C:\PS> Set-ESXImageProfileAssociation $img (Get-VMHost "h1")
Associate an image profile with the host named "h1" using PowerCLI objects.
Related Commands
ESXImageProfileAssociation
Associates the specified image profile with the specified ESXi system.