41

目前我正在尝试运行这个powershell脚本:

Param (
    $websiteName,
    $physicalPath
)

import-module WebAdministration
$website = get-website | where-object { $_.name -eq "$websiteName" }
if($website -eq $null){
    New-webapppool -Name "$websiteName"
    Set-WebConfiguration -filter "/system.applicationHost/applicationPools/add[@name='$websiteName']" -PSPath IIS:\ -value (@{managedRuntimeVersion="v4.0"})
    New-website -Name "$websiteName" -PhysicalPath "$physicalPath" -ApplicationPool "$websiteName"
    start-website "$websiteName"
}

我使用以下命令运行脚本:

& .\InstallWebsite.ps1 -websiteName "MyWebsite" -physicalPath "C:\TEST\MyWebsite"

一切正常,除了 if 语句中的最后一个命令:

start-website "$websiteName"

当该命令运行时,我收到以下错误,我无法成功排除故障:

Start-Website : Cannot create a file when that file already exists. (Exception from HRESULT: 0x800700B7)
At line:1 char:14
+ start-website <<<<  "MyWebsite"
    + CategoryInfo          : InvalidOperation: (:) [Start-Website], COMException
    + FullyQualifiedErrorId : InvalidOperation,Microsoft.IIs.PowerShell.Provider.StartWebsiteCommand

如果重要,我还有以下脚本可以删除网站:

Param (
    $websiteName,
    $appPoolName
)

import-module WebAdministration
$website = get-website | where-object { $_.name -eq "$websiteName" }
if($website -ne $null){
    remove-website -Name "$websiteName"
    remove-webapppool -Name "$websiteName"
}

我使用以下命令运行它:

& .\UninstallWebsite.ps1 -websiteName "MyWebsite" -appPoolname "MyWebsite"
4

4 回答 4

72

错误信息:

Start-Website :当该文件已存在时无法创建该文件。

...通常意味着您有绑定冲突,其中已经有一个站点在相同的 IP 地址、端口上运行,如果您正在使用它们,则为主机标头。

我会在 IIS MMC 中检查您的新站点绑定,然后找出其他东西是否使用完全相同的绑定。

于 2012-06-23T00:05:38.620 回答
0

启用详细的错误跟踪以查找原因。就我而言,它是一个mimeType复制默认元素的元素。

于 2019-02-01T06:59:32.157 回答
0

我遇到了同样的错误。当我尝试远程添加 WebBinding 到我的 IIS 站点时,会发生这种情况,同时使用来自不同代理机器的 Invoke-Command。

它对我有用,也许它也可以帮助某人:

$Mutex = New-Object -TypeName System.Threading.Mutex($false, "Global\Mutex")    
if ($Mutex.WaitOne(300000)) {
   #For example
   #$Command = {
        #New-WebBinding -name $iis_site_name -Protocol https -HostHeader             
           #$iis_host_name -Port 443 -SslFlags 1
   #}
   #Invoke-Command -Command $Command
} else {
   Write-Warning "Timed out acquiring mutex!"
}
    
$Mutex.Dispose()
于 2020-08-05T19:32:59.520 回答
-1

在 IIS 配置中没有任何网站时,也会发生同样的错误。原因是 applicationHost.config 末尾的附加旧记录。这些都在 IIS 管理器中不可见。删除这些 XML 记录后,问题就解决了。

于 2018-05-12T06:34:51.717 回答