我有两个IIS网站,即使用ASP.NET MVC 3 Web应用程序在Visual Studio 2010中创建的“accounts.example.com”和使用“WCF”在Visual Studio 2010中创建的“api.example.com” REST服务应用程序“。
我创建了一个powershell脚本来配置环境。创建网站的功能如下:
function create-website([string]$name, [string]$relativePath) {
$physicalPath = Join-Path -Path $scriptPath -ChildPath $relativePath
$physicalPath = [IO.Path]::GetFullPath( $physicalPath )
# Create an application pool and ensure it is using .NET 4
New-WebAppPool -Name $name
Set-ItemProperty IIS:\AppPools\$name managedRuntimeVersion v4.0
# Create Website
New-WebSite -Name $name -Port 80 -HostHeader $name -PhysicalPath $physicalPath
# Set the Application Pool
Set-ItemProperty IIS:\Sites\$name ApplicationPool $name
Set-ItemProperty IIS:\Sites\$name ApplicationPool $name
# Update Authentication
Set-WebConfigurationProperty -filter /system.WebServer/security/authentication/AnonymousAuthentication -name enabled -value true -location $name
Set-WebConfigurationProperty -filter /system.WebServer/security/authentication/windowsAuthentication -name enabled -value false -location $name
Set-WebConfigurationProperty -filter /system.WebServer/security/authentication/basicAuthentication -name enabled -value false -location $name
}
其名称如下:
create-website $accounts "..\src\accounts"
create-website $api "..\src\api\"
运行脚本时,帐户网站已正确配置(包括身份验证)。但是,在尝试配置api站点时,我收到以下错误:
Set-WebConfigurationProperty : Filename: \\?\S:\example\src\api\web.config
Line number: 20
Error: The configuration section 'standardEndpoints' cannot be read because it is missing a section declaration
At S:\example\scripts\Install-DevelopmentEnvironment.ps1:26 char:33
+ Set-WebConfigurationProperty <<<< -filter /system.WebServer/security/authentication/AnonymousAuthentication -name enabled -value true -location $name
+ CategoryInfo : NotSpecified: (:) [Set-WebConfigurationProperty], COMException
+ FullyQualifiedErrorId : System.Runtime.InteropServices.COMException,Microsoft.IIs.PowerShell.Provider.SetConfigurationPropertyCommand
我不清楚什么可能导致此错误开始,因为它在“帐户”网站上运行良好。看看谷歌,一些人建议检查网站是否使用运行.NET 4的应用程序池。我验证脚本是否成功设置了这个。
如何使用Powershell配置IIS网站的身份验证?
答案 0 :(得分:0)
你试过MS hot fix for IIS 7.5吗?它包含“您无法使用WMI管理.NET Framework 4.0配置”的修复程序。 Hot Fix使用WCF REST-ful service for Mike.
解决了相同的标准端点错误