powershell显示Web应用程序身份验证

时间:2015-02-06 19:06:54

标签: powershell authentication iis

我有一个脚本可以从IIS中提取所有站点和应用程序信息。我可以使用

获取站点身份验证(windows,basic,anonymous)

Get-WebConfigurationProperty -filter system.webServer / security / authentication / anonymousAuthentication -Location“IIS:\ Sites \ $ siteName”-name enabled.value

如何在网站下获取应用程序的身份验证?

1 个答案:

答案 0 :(得分:0)

我猜上面的代码无效。以下是我用来获取应用认证的内容。

Get-WebConfigurationProperty -filter system.webServer / security / authentication / anonymousAuthentication -PSPath“IIS:\ Sites \ $ siteName \ $ appName”-name enabled.value

我重复这个以进行基本和Windows身份验证。

谢谢!