我想切换IIS管理器(7.5,Windows 7),默认网站/我的网站中的匿名身份验证(启用/禁用)设置 - 使用Powershell进行身份验证/匿名身份验证。
我不是在寻找改变web.config文件的东西,但确实是IIS管理器所做的。
我尝试过Set-WebConfiguration和Set-WebConfigurationProperty,但没有接近。
有人能提供一个例子吗?
答案 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