Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Powershell Snipplet für Registry Key hinzugefügt.

...

Code Block
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\services\HTTP\Parameters]
"UrlSegmentMaxLength"=dword:00000400

For easy administration, here is also a Powershell script, which adds this registry key :

Code Block
languagepowershell
themeRDark
Set-Location -Path "HKLM:\"
$Path="HKLM:\SYSTEM\CurrentControlSet\services\HTTP\Parameters" 
New-ItemProperty -Path $Path -Name "UrlSegmentMaxLength" -Value 1024 -PropertyType DWord
Set-Location -Path "C:\"


You may want to use the following PowerShell script to perform the installation of the IIS feature.

...