我使用PowerShell自动配置IIS中的网站。我有以下代码为我创建一个Web应用程序池
#Creating a new Application Pool
New-WebAppPool "NewAppPool"
但是在创建池之前,我想检查池是否存在。我该怎么做呢?
请注意:我的系统上没有IIS驱动器。因此,如下所示在路径中提到IIS的命令会失败:
$IISPath = "IIS:\AppPools"
cd $IISPath
if (Test-Path ".\NewAppPool") { Write-Host "NewAppPool exists." }
用这个:
import-module webadministration
$AppPoolName="NewAppPool"
if(Test-Path IIS:\AppPools\$AppPoolName)
{
"AppPool is already there"
return $true;
}
else
{
"AppPool is not present"
"Creating new AppPool"
New-WebAppPool "$AppPoolName" -Force
return $false;
}
注意:您需要Powershell的WebAdministration模块。导入后,您可以使用它。请参阅我提到过的有关IIS驱动器的其他ANSWER