如何使用PowerShell和Web管理模块检查IIS中是否存在应用程序池?

问题描述 投票:7回答:1

我使用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." }
powershell iis application-pool web-administration
1个回答
11
投票

用这个:

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

© www.soinside.com 2019 - 2024. All rights reserved.