Ajout dela structure MDT dans Infra-LAB

This commit is contained in:
2026-05-24 16:21:20 +02:00
parent fed8d42171
commit 049b03b4d4
522 changed files with 105109 additions and 0 deletions
@@ -0,0 +1,15 @@
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