Get-VMHostProfileRequiredInput

This cmdlet performs a check whether the available information is sufficient to apply a host profile, and returns missing values. If the cmdlet returns no output, the information in the hashtable passed to the Variable parameter is sufficient to apply the host profile to the host by using the Apply-VMHostProfile cmdlet.

Syntax

-VMHost  <VMHost>
[[-Variable]  <Hashtable>]
[-Inapplicable]
[-Profile  <VMHostProfile>]
[-Server  <VIServer[]>]
[CommonParameters]

Parameters

Required Parameter Name Type Position Features Description
required
VMHost
VMHost named
  • wildcards
  • pipeline
  • Specifies a host to check if the provided information is sufficient for applying the specified host profile.
    optional
    Variable
    Hashtable 1 Provides a hash table that contains the available values required for applying the specified profile to the the specified host.
    optional
    Inapplicable
    SwitchParameter named Indicates that you want to view also the elements that are inapplicable to the operation.
    optional
    Profile
    VMHostProfile named
  • wildcards
  • pipeline
  • Specifies a host profile to check if the provided information is sufficient for applying it to the specified host.
    optional
    Server
    VIServer[] named
  • wildcards
  • Specifies the vCenter Server systems on which you want to run the cmdlet. If no value is provided or $null value is passed to this parameter, the command runs on the default servers. For more information about default servers, see the description of Connect-VIServer.

    Output

    VMware.VimAutomation.ViCore.Types.V1.Host.Profile.VMHostProfileInput

    Examples


    Example 1

    Get-VMHost | Get-VMHostProfileRequiredInput

    Retrieves required input for a list of hosts.

    Example 2

    Get-VMHostProfileRequiredInput -VMHost $vmhost -Profile $vmhostProfile

    Retrieves a required input by specifying a host and a profile.

    Example 3

    $result = Get-VMHostProfileRequiredInput -VMHost $vmhost -Variable $requiredInputHashtable;
    if (-not $result) { Apply-VMHostProfile -Entity $vmhost -Variable $requiredInputHashtable}

    Check whether the specified hashtable that contains values for each required input is exhaustive. If the result is null, then the hashtable can be used by Apply-VMHostProfile.

    Example 4

    $result = Get-VMHostProfileRequiredInput -VMHost $vmhost -Variable $requiredInputHashtable -Inapplicable;
    $result | where { $_.Type -eq 'Inapplicable' } | foreach { Write-Host "Key $($_.Key) is not applicable for host $vmhost" }

    Retrieve the required and inapplicable input and display all inapplicable keys.

    Related Commands

    Feedback

    Was this page helpful?