-
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 --------------------------PS C:\> Get-HPOVEulaStatus -Appliance myappliance.domain.com Appliance Accepted --------- -------- myappliance.domain.com False
Get the EULA status from myappliance.domain.com
-------------------------- EXAMPLE 2 --------------------------PS C:\> $Connection = Connect-HPOVMgmt -Appliance myappliance.domain.com -Username Administrator -Password MyPassw0rd PS C:\> Get-HPOVEulaStatus -Appliance $Connection Appliance Accepted --------- -------- myappliance.domain.com False
COnnecto to an appliance, then get the EULA status from myappliance.domain.com
- [Set-HPOVEulaStatus] (https://github.com/HewlettPackard/POSH-HPOneView/wiki/Set-HPOVEulaStatus)
- [Connect-HPOVMgmt] (https://github.com/HewlettPackard/POSH-HPOneView/wiki/Connect-HPOVMgmt)
### HPE OneView 2.00 Library
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.
-Appliance <Object>
The FQDN or IP Address 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.
System.Boolean
True if the appliance requires the EULA to be accepted, otherwise False.
-------------------------- EXAMPLE 1 --------------------------PS C:\> Get-HPOVEulaStatus -appliance myappliance.acme.com
Get the EULA status from myappliance.acme.com
- [Set-HPOVEulaStatus] (https://github.com/HewlettPackard/POSH-HPOneView/wiki/Set-HPOVEulaStatus)
- [Connect-HPOVMgmt] (https://github.com/HewlettPackard/POSH-HPOneView/wiki/Connect-HPOVMgmt)
### HPE OneView 1.20 Library
Retrieve EULA status.
Get-HPOVEulaStatus[ [-appliance] <appliance>] [<CommonParameters>]
Determine if the EULA for the specified appliance needs to be accepted. This is typically called during First Time Setup of the appliance.
-appliance <appliance>
The hostname or IP address of the HP OneView appliance. If not specified, a connection must already be established with Connect-HPOVMgmt.
Aliases | None. |
Required? | false |
Position? | 1 |
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.
System.Boolean
True if the appliance requires the EULA to be accepted, otherwise False.
-------------------------- EXAMPLE 1 --------------------------PS C:\> Get-HPOVEulaStatus -appliance "myappliance.acme.com"
Get the EULA status from myappliance.acme.com
- [Set-HPOVEulaStatus] (https://github.com/HewlettPackard/POSH-HPOneView/wiki/Set-HPOVEulaStatus)
- [Connect-HPOVMgmt] (https://github.com/HewlettPackard/POSH-HPOneView/wiki/Connect-HPOVMgmt)