2011-07-27 60 views
4

我希望有人能幫助,我試圖同時啓用「ASP.Net模擬」下IIS7的Authenticatuin部分IIS 7.5中啓用模擬,我已啓用使用下面的命令其他部分:通過PowerShell的

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

但我無法找到類似的命令來設置ASP.net模擬,我猜測它與ASP.net不是IIS有關。

任何有識之士將不勝感激。

回答

6

試試這個:

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

感謝奏效一種享受,遺憾的錯誤答覆。 – Iain

+1

我無法在無法加載ServerManager的桌面上工作,但此方法可行: https://github.com/jefflomax/configure-iis-webapps-powershell –