使用 Powershell 启用与 IIS 7.x 管理服务的远程连接

使用 Powershell 启用与 IIS 7.x 管理服务的远程连接

是否可以从此处执行“启用远程连接”步骤指示(“IIS 管理器的远程管理”)使用 Powershell?

答案1

从本页开始IIS 远程管理,看来您需要添加一个注册表项:

reg add HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\WebManagement\Server /v EnableRemoteManagement /t REG_DWORD /d 1

要使用 powershell 添加新的 regkey,请尝试:

New-Item -path Registry HKLM\SOFTWARE\Microsoft\WebManagement\Server\EnableRemoteManagement -PropertyType DWord -Value 1

请注意,这尚未经过测试。

答案2

上述 PowerShell 命令可能不适合您。请尝试以下命令:

Set-ItemProperty -Path HKLM:\SOFTWARE\Microsoft\WebManagement\Server -Name EnableRemoteManagement -Value 1

相关内容