< Back

Get-iBMCBootupSequence

Tue Jan 14, 2020 2:47 am

NAME Get-iBMCBootupSequence



SYNOPSIS

Query bios boot up device sequence.





SYNTAX

Get-iBMCBootupSequence [-Session] <RedfishSession[]> [<CommonParameters>]





DESCRIPTION

Query bios boot up device sequence. Boot up device contains: Hdd, Cd, Pxe, Others.





PARAMETERS

-Session <RedfishSession[]>

iBMC redfish session object which is created by Connect-iBMC cmdlet.

A session object identifies an iBMC server to which this cmdlet will be executed.



Required? true

Position? 1

Default value

Accept pipeline input? true (ByValue, ByPropertyName)

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 (https:/go.microsoft.com/fwlink/?LinkID=113216).



INPUTS



OUTPUTS

Array[String[]]

Returns string array identifies boot up device in order if cmdlet executes successfully.

In case of an error or warning, exception will be returned.





-------------------------- EXAMPLE 1 --------------------------



PS C:\\>$credential = Get-Credential



PS C:\\> $session = Connect-iBMC -Address 10.1.1.2 -Credential $credential -TrustCert

PS C:\\> $Sequence = Get-iBMCBootupSequence $session

PS C:\\> $Sequence



Host BootupSequence

---- --------------

10.1.1.2 {Pxe, HDD, Cd, Others}



PS C:\\> $Sequence | fl



Host : 10.1.1.2

BootupSequence : {Pxe, HDD, Cd, Others}











RELATED LINKS

https://github.com/Huawei/Huawei-iBMC-Cmdlets



Set-iBMCBootupSequence

Get-iBMCBootSourceOverride

Set-iBMCBootSourceOverride

Connect-iBMC

Disconnect-iBMC