Enabling Impersonation in IIS 7.5 via Powershell

I hope someone can help, I am trying to enable the inclusion of "ASP.Net impersonation" in the Authenticatuin section in IIS7, I have included other sections using the following command:

Set-WebConfigurationProperty ` -filter /system.WebServer/security/authentication/windowsAuthentication ` -name enabled ` -value true ` -location $SiteName 

But I can not find a similar command to configure ASP.NET impersonation, I assume that it is somehow connected with ASP.net, and not with IIS.

Any insight would be appreciated.

+4
source share
1 answer

Try the following:

 Set-WebConfigurationProperty ` -Filter system.web/identity ` -Name impersonate ` -Value True ` -Location $SiteName 
+6
source

All Articles