keyPath = "HKLM:\System\CurrentControlSet\Services\HTTP\Parameters"; if (!(Get-Item $keyPath -ErrorAction SilentlyContinue)) ...

$keyPath = "HKLM:\System\CurrentControlSet\Services\HTTP\Parameters";            if (!(Get-Item $keyPath -ErrorAction SilentlyContinue)) { New-Item $keyPath -Force }            set-itemproperty -path $keyPath -Name "MaxFieldLength" -Value 65534 -Type DWORD -Force;            set-itemproperty -path $keyPath -Name "MaxRequestBytes" -Value 65534 -Type DWORD -Force;
English
English (United States)
Español (España)
Spanish (Spain)
Français (France)
French (France)