web-dev-qa-db-ja.com

PowerShellですべてのサイトとバインドを表示する

すべてのサイトと、IISからのサイトに関連するバインディングを文書化しています。 IISを見て手動で入力するのではなく、PowerShellスクリプトを使用してこのリストを取得する簡単な方法はありますか?

出力を次のようにしたい:

Site                          Bindings
TestSite                     www.hello.com
                             www.test.com
JonDoeSite                   www.johndoe.site
43
sanjeev40084

次のようなものを試して、必要な形式を取得してください。

Get-WebBinding | % {
    $name = $_.ItemXPath -replace '(?:.*?)name=''([^'']*)(?:.*)', '$1'
    New-Object psobject -Property @{
        Name = $name
        Binding = $_.bindinginformation.Split(":")[-1]
    }
} | Group-Object -Property Name | 
Format-Table Name, @{n="Bindings";e={$_.Group.Binding -join "`n"}} -Wrap
49
Frode F.

これを試して:

Import-Module Webadministration
Get-ChildItem -Path IIS:\Sites

次のようなものが返されます。

Name             ID   State      Physical Path                  Bindings
----             --   -----      -------------                  --------
ChristophersWeb 22   Started    C:\temp             http *:8080:ChristophersWebsite.ChDom.com

ここから結果を絞り込むことができますが、注意してください。 selectステートメントへのパイプは、必要なものを提供しません。要件に基づいて、カスタムオブジェクトまたはハッシュテーブルを作成します。

81

私が見た最も簡単な方法:

Foreach ($Site in get-website) { Foreach ($Bind in $Site.bindings.collection) {[pscustomobject]@{name=$Site.name;Protocol=$Bind.Protocol;Bindings=$Bind.BindingInformation}}}
22

すべてのサイトをリストするだけの場合(つまり、バインディングを見つけるため)

作業ディレクトリを「C:\ Windows\system32\inetsrv」に変更します

cd c:\ Windows\system32\inetsrv

次に、「appcmd list sites」(複数)を実行し、ファイルに出力します。例:c:\ IISSiteBindings.txt

appcmd list sites> c:\ IISSiteBindings.txt

コマンドプロンプトからメモ帳で開きます。

メモ帳c:\ IISSiteBindings.txt

17
Armand G.

これを試して

function DisplayLocalSites
{

try{

Set-ExecutionPolicy unrestricted

$list = @()
foreach ($webapp in get-childitem IIS:\Sites\)
{
    $name = "IIS:\Sites\" + $webapp.name
    $item = @{}

$item.WebAppName = $webapp.name

foreach($Bind in $webapp.Bindings.collection)
{
    $item.SiteUrl = $Bind.Protocol +'://'+         $Bind.BindingInformation.Split(":")[-1]
}


$obj = New-Object PSObject -Property $item
$list += $obj
}

$list | Format-Table -a -Property "WebAppName","SiteUrl"

$list | Out-File -filepath C:\websites.txt

Set-ExecutionPolicy restricted

}
catch
{
$ExceptionMessage = "Error in Line: " + $_.Exception.Line + ". " +     $_.Exception.GetType().FullName + ": " + $_.Exception.Message + " Stacktrace: "    + $_.Exception.StackTrace
$ExceptionMessage
}
}
2
snimakom
function Get-ADDWebBindings {
param([string]$Name="*",[switch]$http,[switch]$https)
    try {
    if (-not (Get-Module WebAdministration)) { Import-Module WebAdministration }
    Get-WebBinding | ForEach-Object { $_.ItemXPath -replace '(?:.*?)name=''([^'']*)(?:.*)', '$1' } | Sort | Get-Unique | Where-Object {$_ -like $Name} | ForEach-Object {
        $n=$_
        Get-WebBinding | Where-Object { ($_.ItemXPath -replace '(?:.*?)name=''([^'']*)(?:.*)', '$1') -like $n } | ForEach-Object {
            if ($http -or $https) {
                if ( ($http -and ($_.protocol -like "http")) -or ($https -and ($_.protocol -like "https")) ) {
                    New-Object psobject -Property @{Name = $n;Protocol=$_.protocol;Binding = $_.bindinginformation}
                }
            } else {
                New-Object psobject -Property @{Name = $n;Protocol=$_.protocol;Binding = $_.bindinginformation}
            }
        }
    }
    }
    catch {
       $false
    }
}
2
user6804160

この質問は、IISインスタンスで実行されているすべてのWebサイトへのリンクを含むWebページを生成したかったためです。 Alexander Shapkin's answer を使用して、リンクを生成するために以下を考え出しました。

$hostname = "localhost"

Foreach ($Site in get-website) {
    Foreach ($Bind in $Site.bindings.collection) {
        $data = [PSCustomObject]@{
            name=$Site.name;
            Protocol=$Bind.Protocol;
            Bindings=$Bind.BindingInformation
        }
        $data.Bindings = $data.Bindings -replace '(:$)', ''
        $html = "<a href=""" + $data.Protocol + "://" + $data.Bindings + """>" + $data.name + "</a>"
        $html.Replace("*", $hostname);
    }
}

次に、この急いで書かれたHTMLに結果を貼り付けます。

<html>
<style>
    a { display: block; }
</style>
{paste PowerShell results here}
</body>
</html>
0
Walter Stabosz