Powershell scripts for Dell Client Configuration Toolkit.
Binaries included. For Windows 64-bit only.
To download all scripts into your $env:temp
folder:
iex (iwr 'https://raw.githubusercontent.com/fdcastel/PSDellCCTK/master/bootstrap.ps1' -UseBasicParsing)
IMPORTANT: All scripts requires administrative privileges to run.
Get-DellConfiguration.ps1 [-Key] <string[]> [<CommonParameters>]
Returns one or more configuration values in a hash table.
Example:
.\Get-DellConfiguration.ps1 'WakeOnLan','WarningsAndErr'
Name Value
---- -----
WakeOnLan LanWlan
WarningsAndErr ContWrn
Set-DellConfiguration.ps1 [-Key] <string> [-Value] <string> [<CommonParameters>]
Set-DellConfiguration.ps1 [-Values] <hashtable> [<CommonParameters>]
Sets one or more configuration values. Returns a hash table with updated values.
Examples:
.\Set-DellConfiguration.ps1 -Key 'WakeOnLan' -Value 'LanWLan'
Name Value
---- -----
WakeOnLan LanWlan
.\Set-DellConfiguration.ps1 @{ AcPwrRcvry = 'On' ; WakeOnAc = 'Enabled' }
Name Value
---- -----
AcPwrRcvry On
WakeOnAc Enabled