15 lines
756 B
PowerShell
15 lines
756 B
PowerShell
Import-Module $PSScriptRoot\Set-LenovoBIOSSettings.ps1
|
|
|
|
# Liste lisible des paramètres BIOS Lenovo pour ThinkCentre neo 50s Gen 3/4/5.
|
|
# Les noms des paramètres sont ceux attendus par Set-LenovoBIOSSettings.
|
|
# IMPORTANT: ne pas insérer d'espace après la virgule séparant le nom et la valeur.
|
|
$Settings = @(
|
|
"AfterPowerLoss,Last State;[Optional:Power Off,Power On,Last State]",
|
|
"BootPriority,UEFI;[Optional:UEFI,Legacy]",
|
|
"BootUpNum-LockStatus,On;[Optional:Off,On]",
|
|
"PXEIPV6networkstack,Disabled;[Optional:Disabled,Enabled]",
|
|
"SecureBoot,Enabled;[Optional:Disabled,Enabled]",
|
|
"WakeonLAN,Automatic;[Optional:Primary,Automatic,Disabled]"
|
|
)
|
|
|
|
Set-LenovoBIOSSettings -ComputerName $env:computername -SettingsToBeApplied $Settings |