我希望有人可以提供帮助,我正在尝试在IIS7的Authenticatuin部分下启用“ASP.Net Impersonation”,我使用以下命令启用了其他部分:
Set-WebConfigurationProperty `
-filter /system.WebServer/security/authentication/windowsAuthentication `
-name enabled `
-value true `
-location $SiteName
但是我找不到类似的命令来设置ASP.net模拟,我猜它与ASP.net而不是IIS有关。
任何见解都将受到赞赏。
答案 0 :(得分:7)
试试这个:
Set-WebConfigurationProperty `
-Filter system.web/identity `
-Name impersonate `
-Value True `
-Location $SiteName
答案 1 :(得分:1)
使用-PSPath而不是-Location。
Set-WebConfigurationProperty -filter /system.web/identity -name impersonate -value true -PSPath 'IIS:\Sites\Default Web Site\WebApp'