Windows 8に移行し、powershellで次を実行しようとしています
# Load the Web Management and Administration Assembly
[System.Reflection.Assembly]::LoadWithPartialName("Microsoft.Web.Management")
[System.Reflection.Assembly]::LoadWithPartialName("Microsoft.Web.Administration")
$ServerManager = New-Object Microsoft.Web.Administration.ServerManager
$defaultSite = $ServerManager.Sites["Default Web Site"];
Sites 配列が空です
ランニング
appcmd.exe list sites
与える
SITE "Default Web Site" (id:1,bindings:http/*:80:,state:Started)
これは、Windows 7を搭載したIIS 7で機能しました
ありがとう、