Syntax
Set-EsxImageProfile [-ImageProfile] <ImageProfile> [-Name <String>] [-Vendor <String>] [-SoftwarePackage <SoftwarePackage[]>] [-AcceptanceLevel <AcceptanceLevels>] [-Description <String>] [-ReadOnly] [-Force] [-WarningAction <ActionPreference>] [-WarningVariable <String>] [-WhatIf] [-Confirm] [<CommonParameters>]Related Commands
Detailed Description
Set-EsxImageProfile is used to modify a user-created image profile. The cmdlet returns the modified ImageProfile object, which can be piped into any other cmdlet taking image profiles as input. For details on persistence, see New-EsxImageProfile.Parameters
Name | Type | Description | Required? | Pipeline Input | Default Value |
---|---|---|---|---|---|
ImageProfile | ImageProfile | (pipeline input, prompt) Specifies the image profile to edit.
Takes one of the following forms: *Name of an image profile, as displayed in the Name column of Get-EsxImageProfile, or the Name property of any ImageProfile object *ImageProfile object | true | true (ByValue, ByPropertyName) | |
AcceptanceLevel | AcceptanceLevels | Optional. Specifies the minimum acceptance level allowed for VIBs in the image profile, one of the following:
*VMwareCertified *VMwareAccepted *PartnerSupported *CommunitySupported If the acceptance level is raised above the lowest acceptance level of any VIB in the profile, an error results. | false | false | |
Confirm | SwitchParameter | false | false | ||
Description | String | Optional. Long string describing the contents or purpose of the image profile. | false | false | |
Force | SwitchParameter | Installs packages that break extensibility rules such as standard file path. Also bypasses dependency checks on packages. Use this option with care. Because it bypasses standard validation checks, an invalid image profile might result. | false | false | |
Name | String | String value to replace the current Name field with. | false | false | |
ReadOnly | SwitchParameter | Optional. Makes the image profile read only. (not modifiable). | false | false | |
SoftwarePackage | SoftwarePackage[] | (pipeline input) One or more VIB software packages that the image profile should contain. Replaces the list of VIBs in the image profile.
The value takes one of the following forms: *Name of a VIB, as displayed in the Name column of Get-EsxSoftwarePackage, or the Name property of any SoftwarePackage object. The cmdlet selects the highest available version of the named package. *"<Name> <Version>", for specifying a specific version of a VIB named Name. *SoftwarePackage object *GUID of the VIB software package (from the Guid property of a SoftwarePackage) *List containing a mix of any of the above One of the "esx-base" packages is required for a valid image profile. | false | false | |
Vendor | String | String value to replace the current Vendor field with. | false | false | |
WarningAction | ActionPreference | false | false | ||
WarningVariable | String | false | false | ||
WhatIf | SwitchParameter | false | false |
Return Type
Notes
Examples
---------- Example 1 ----------
Set-EsxImageProfile -ImageProfile "Profile of a Fool" -SoftwarePackage esx-base,scsi-ips,esx-tboot
Modify the VIB list of an existing image profile
---------- Example 2 ----------
$myprofiles = Get-EsxImageProfile Set-EsxImageProfile -ImageProfile $myprofiles[2] -AcceptanceLevel PartnerSupported
Change the acceptance level (maybe so that some VIB with a lower acceptance level can be added) of the third image profile from a list (index starts at 0):
---------- Example 3 ----------
Get-EsxImageProfile | Set-EsxImageProfile -ReadOnly
Using pipelining to mark all profiles as read-only