4

在 IIS 7.5 管理器 > 应用程序池中查看时,最后一列列出了“应用程序”。此列显示与此 appPool 关联的应用程序池/网站的数量。

我想弄清楚如何使用 Powershell 查询此列/信息。这里的最终目标是拥有一个我可以运行的脚本,它会告诉我是否有任何应用程序池被用于超过 1 个网站或应用程序。

运行时,我无法找到如何查询此信息:

get-itemproperty IIS:\AppPools\(AppPoolName) | format-list *

我没有看到这个属性。我不确定此列是否是一个属性,如果不是,是否有最好的方法来检查 AppPools 是否用于超过 1 个网站/应用程序?

4

3 回答 3

4

Applications 属性在格式文件中定义,其代码位于 iisprovider.format.ps1xml 文件中(在 webadmin 模块文件夹中)。

        <TableColumnItem>
          <ScriptBlock>
            $pn = $_.Name
            $sites = get-webconfigurationproperty "/system.applicationHost/sites/site/application[@applicationPool=`'$pn`'and @path='/']/parent::*" machine/webroot/apphost -name name
            $apps = get-webconfigurationproperty "/system.applicationHost/sites/site/application[@applicationPool=`'$pn`'and @path!='/']" machine/webroot/apphost -name path
            $arr = @()
            if ($sites -ne $null) {$arr += $sites}
            if ($apps -ne $null) {$arr += $apps}
            if ($arr.Length -gt 0) {
              $out = ""
              foreach ($s in $arr) {$out += $s.Value + "`n"}
              $out.Substring(0, $out.Length - 1)
            }
          </ScriptBlock>
        </TableColumnItem>

您可以将代码取出并在格式文件之外使用它,只需将 $pn 分配给您要查询的应用程序池名称即可。这是代码的简化版本:

$pn = 'pool1'
$sites = get-webconfigurationproperty "/system.applicationHost/sites/site/application[@applicationPool='$pn' and @path='/']/parent::*" machine/webroot/apphost -name name
$apps = get-webconfigurationproperty "/system.applicationHost/sites/site/application[@applicationPool='$pn' and @path!='/']" machine/webroot/apphost -name path
$sites,$apps | foreach {$_.value}
于 2012-05-11T08:31:43.253 回答
1

我和这个一起去了:

Import-Module WebAdministration

function Get-WebAppPoolApplications($webAppPoolName) {
    $result = @()

    $webAppPool = Get-Item ( Join-Path 'IIS:\AppPools' $webAppPoolName )
    if ( $webAppPool -ne $null ) {
        $webSites = Get-ChildItem 'IIS:\Sites'
        $webSites | % {
            $webApplications = Get-ChildItem ( Join-Path 'IIS:\Sites' $_.Name ) |
                where { $_.NodeType -eq 'application' }

            $result += $webApplications |
                where { $_.applicationPool -eq $webAppPoolName }
        }
    }

    $result
}
于 2012-09-05T10:18:58.123 回答
0

希望我能早点看到你的帖子,这就是我最终想出的:

$SiteApps = get-item IIS:\Sites* $arraySize = ($SiteApps.count -1) 
$i = 0 
$t = 0 
for ($i=0; $i -le $arraySize; $i ++) # start at the beg of the array
{ 
for ($t=($i+1); $t -le $arraySize; $t++) 
{
if ($siteApps[$i].applicationpool -eq $siteApps[$t].applicationpool) 
{
$web1 = $siteApps[$i].name 
$webappPool = $siteApps[$i].applicationpool 
$web2 = $siteApps[$t].name $answer = $answer + "The website "$web1" is sharing the AppPool "webAppPool" with website "$web2". " 
}
}
}
于 2012-05-14T17:58:10.117 回答