使用Powershell 3.0切换IIS 7.5身份验证“匿名身份验证”?

时间:2013-08-08 21:07:32

标签: authentication iis powershell

我想切换IIS管理器(7.5,Windows 7),默认网站/我的网站中的匿名身份验证(启用/禁用)设置 - 使用Powershell进行身份验证/匿名身份验证。

我不是在寻找改变web.config文件的东西,但确实是IIS管理器所做的。

我尝试过Set-WebConfiguration和Set-WebConfigurationProperty,但没有接近。

有人能提供一个例子吗?

1 个答案:

答案 0 :(得分:8)

尝试Set-WebConfigurationProperty cmdlet:

Set-WebConfigurationProperty -Filter system.webServer/security/authentication/anonymousAuthentication `
                              -PSPath MACHINE/WEBROOT/APPHOST `
                              -Location 'Default Web Site' `
                              -Name Enabled `
                              -Value $true