Lenovo ThinkPad R400 Manuel de déploiement - Page 35

Parcourez en ligne ou téléchargez le pdf Manuel de déploiement pour {nom_de_la_catégorie} Lenovo ThinkPad R400. Lenovo ThinkPad R400 40 pages. (bulgarian) setup guide
Également pour Lenovo ThinkPad R400 : Configuration initiale (2 pages), Manuel de configuration (2 pages), Brochure (4 pages), Spécifications (4 pages), Manuel de déploiement (44 pages), Brochure (4 pages), Avis (24 pages), Avis (1 pages), Manuel de déploiement (36 pages), Manuel de l'utilisateur (28 pages), (espagnol) Affiche d'installation (2 pages), (portugais) Affiche d'installation (2 pages), (portugais) Affiche d'installation (2 pages), (Italien) Affiche d'installation (2 pages), (allemand) Setup Poster (2 pages), (néerlandais) Setup Poster (2 pages), (finnois) Affiche d'installation (2 pages), Affiche d'installation (danoise) (2 pages), Affiche d'installation (danoise) (2 pages), (russe) Setup Poster (2 pages), (roumain) Affiche d'installation (2 pages), Poster d'installation (2 pages), Poster d'installation (2 pages), Poster d'installation (2 pages), Poster d'installation (2 pages), Poster d'installation (2 pages)

Lenovo ThinkPad R400 Manuel de déploiement
<Command>
gwmi -class Lenovo_BiosSetting -namespace root\wmi | Where-Object
{$_.CurrentSetting.split(",",[StringSplitOptions]::RemoveEmptyEntries) -eq
"AlwaysOnUSB"}
| Format-List CurrentSetting
Remote computer:
<Command>
gwmi -class Lenovo_BiosSetting -namespace root\wmi -ComputerName test-pc -credential
(get-credential) | Where-Object {$_.CurrentSetting.split(",",[StringSplitOptions]
::RemoveEmptyEntries) -eq "AlwaysOnUSB"} | Format-List CurrentSetting
<Sample output>
PS C:\> gwmi -class Lenovo_BiosSetting -namespace root\wmi -ComputerName test-pc
-credential (get-credential) | Where-Object {$_.CurrentSetting.split(",",
[StringSplitOptions]::RemoveEmptyEntries) -eq "AlwaysOnUSB"}
| Format-List CurrentSetting
cmdlet get-credential at command pipeline position 1
Supply values for the following parameters:
Credential
CurrentSetting : AlwaysOnUSB,Disable

Setting a BIOS setting

Use the following script as a template to set the value of a setting. Replace "WakeOnLAN,Disable" with the
item and value of your choice.
Note: The setting string is case sensitive and should be in the format "<item, <value>".
<Command>
(gwmi -class Lenovo_SetBiosSetting
-namespace root\wmi).SetBiosSetting ("WakeOnLAN,Disable")
__GENUS
: 2
__CLASS
: __PARAMETERS
__SUPERCLASS
:
__DYNASTY
: __PARAMETERS
__RELPATH
:
__PROPERTY_COUNT : 1
__DERIVATION
: {}
__SERVER
:
__NAMESPACE
:
__PATH
:
return
: Success
PS C:\> (gwmi -class Lenovo_SaveBiosSettings -namespace root\wmi).
SaveBiosSettings
MemberType
: Method
OverloadDefinitions : {System.Management.ManagementBaseObject
SaveBiosSettings(System.String parameter)}
TypeNameOfValue : System.Management.Automation.PSMethod
Value
: System.Management.ManagementBaseObject
SaveBiosSettings(System.String parameter)
Name
: SaveBiosSettings
27
Appendix B. Sample PowerShell scripts for remote BIOS management