-
Notifications
You must be signed in to change notification settings - Fork 52
Get HPOVEulaStatus
Retrieve EULA status.
Get-HPOVEulaStatus [-Appliance] <Object> [<CommonParameters>]
Determine if the EULA for the specified appliance needs to be accepted. This is typically called during First Time Setup of the appliance.
This Cmdlet supports an unauthenticated request. If attempting to get the EULA status of an appliance not yet configured, provide the IP Address or FQDN of the appliance. A temporary ApplianceConnection will be created then removed in the ${Global:ConnectedSessions} tracker.
-Appliance <Object>
The FQDN, IP Address or HPOneView.Appliance.Connection of an HPE OneView appliance must be provided.
Aliases | None |
Required? | true |
Position? | 0 |
Default value | |
Accept pipeline input? | false |
Accept wildcard characters? | False |
<CommonParameters>
This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216)
None. You cannot pipe objects to this cmdlet.
HPOneView.Appliance.EulaStatus
Object that returns the Appliance Name and if the EULA has been accepted with a boolean "Accepted" property.
-------------------------- EXAMPLE 1 --------------------------Get-HPOVEulaStatus -Appliance myappliance.domain.com Appliance Accepted --------- -------- myappliance.domain.com False
Get the EULA status from myappliance.domain.com
-------------------------- EXAMPLE 2 --------------------------$Connection = Connect-HPOVMgmt -Appliance myappliance.domain.com -Username Administrator -Password MyPassw0rd Get-HPOVEulaStatus -Appliance $Connection Appliance Accepted --------- -------- myappliance.domain.com False
COnnecto to an appliance, then get the EULA status from myappliance.domain.com
Retrieve EULA status.
Get-HPOVEulaStatus [-Appliance] <Object> [<CommonParameters>]
Determine if the EULA for the specified appliance needs to be accepted. This is typically called during First Time Setup of the appliance.
This Cmdlet supports an unauthenticated request. If attempting to get the EULA status of an appliance not yet configured, provide the IP Address or FQDN of the appliance. A temporary ApplianceConnection will be created then removed in the ${Global:ConnectedSessions} tracker.
-Appliance <Object>
The FQDN, IP Address or HPOneView.Appliance.Connection of an HPE OneView appliance must be provided.
Aliases | None |
Required? | true |
Position? | 0 |
Default value | |
Accept pipeline input? | false |
Accept wildcard characters? | False |
<CommonParameters>
This cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216)
None. You cannot pipe objects to this cmdlet.
HPOneView.Appliance.EulaStatus
Object that returns the Appliance Name and if the EULA has been accepted with a boolean 'Accepted' property.
-------------------------- EXAMPLE 1 --------------------------Get-HPOVEulaStatus -Appliance myappliance.domain.com Appliance Accepted --------- -------- myappliance.domain.com False
Get the EULA status from myappliance.domain.com
-------------------------- EXAMPLE 2 --------------------------$Connection = Connect-HPOVMgmt -Appliance myappliance.domain.com -Username Administrator -Password MyPassw0rd Get-HPOVEulaStatus -Appliance $Connection Appliance Accepted --------- -------- myappliance.domain.com False
COnnecto to an appliance, then get the EULA status from myappliance.domain.com