gpt4 book ai didi

iis - 从命令行设置 UrlSegmentMaxLength

转载 作者:行者123 更新时间:2023-12-04 04:32:22 27 4
gpt4 key购买 nike

有没有办法设置UrlSegmentMaxLength Http.sys 的值使用 appcmd/netsh 或任何其他命令行实用程序?

最佳答案

我意识到这是一个老问题,但如果有人偶然发现这一点,这里是 PowerShell one-liner,它可以创建 key 并设置值或更新现有值。

if ((Get-ItemProperty -Path HKLM:\System\CurrentControlSet\Services\HTTP\Parameters -Name UrlSegmentMaxLength -ErrorAction SilentlyContinue) -eq $null) { New-ItemProperty -Path HKLM:\System\CurrentControlSet\Services\HTTP\Parameters -Name UrlSegmentMaxLength -Value 2048 -PropertyType DWord } else { Set-ItemProperty -Path HKLM:\System\CurrentControlSet\Services\HTTP\Parameters -Name UrlSegmentMaxLength -Value 2048 }

`

至于重启,我发现这个效果很好(不需要重启服务器):
Stop-Service http -Force
Start-Service http
Start-Service IISADMIN
Start-Service W3SVC

关于iis - 从命令行设置 UrlSegmentMaxLength,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20376134/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com