PS1- Window10ENT, Script pour modifier les valeurs DWORD dans le Registre [fermé]
Quelqu'un peut-il m'aider à créer un PowerShell script qui change la valeur DWORD
de ConnectionType
en 1
, et la valeur DWORD
de DeferFlags
en 4
dans le registre d'utilisateurs sous HKCU:Network[drive letter]
.
$registryPath = "HKCU:NetworkG";
If(!(Test-Path $registryPath))
{
New-Item -Path $registryPath -Force;
New-ItemProperty -Path $registryPath -Name "Connection Type" -Value 1 -PropertyType DWORD -Force;
New-ItemProperty -Path $registryPath -Name "DeferFlags" -Value 4 -PropertyType DWORD -Force;
} Else {
New-ItemProperty -Path $registryPath -Name "Connection Type" -Value 1 -PropertyType DWORD -Force;
New-ItemProperty -Path $registryPath -Name "DeferFlags" -Value 4 -PropertyType DWORD -Force;
}