如何找出应用程式的MACHINE / WEBROOT / APPHOST位置

时间:2019-02-27 13:02:47

标签: iis iis-10

我目前正在Powershell中为IIS 10编写安全审核脚本。我以前从来没有使用过IIS。我应该运行这样的命令:

Get-WebConfigurationProperty -pspath 'MACHINE/WEBROOT/APPHOST/<website name>' -filter 'system.web/authentication/forms' -name 'protection'

在哪里可以找到网站名称? 谢谢

1 个答案:

答案 0 :(得分:0)

如lex所述,我们可以使用Get-Website或WebApplication来迭代所有站点/应用程序。

如果只想在Powershell中列出网站名称,则可以在下面添加命令。

 Get-WebSite | Format-List -Property Name

结果示例:

enter image description here