Iis

使用 Powershell 啟用與 IIS 7.x 管理服務的遠 程連接

  • April 14, 2018

是否可以使用 Powershell 執行本說明(“IIS 管理器的遠端管理”)中的“啟用遠端連接”步驟?

IIS Remote Mgmt上的這個頁面上,您似乎需要添加一個系統資料庫項:

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

請注意,這未經測試。

上面的 PowerShell 命令可能不適合您。試試這個:

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

引用自:https://serverfault.com/questions/363378