3

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

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

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

谁能提供一个例子?

4

1 回答 1

9

试试Set-WebConfigurationPropertycmdlet:

Set-WebConfigurationProperty -Filter system.webServer/security/authentication/anonymousAuthentication `
                              -PSPath MACHINE/WEBROOT/APPHOST `
                              -Location 'Default Web Site' `
                              -Name Enabled `
                              -Value $true
于 2013-08-09T11:47:44.263 回答