0
我試圖運行下面要設置處理映射每個PowerShell中使用APPCMD我們網站的陣列:APPCMD語法在PowerShell中
$websites = Get-ChildItem IIS:\Sites
foreach ($Site in $WebSites) {
C:\Windows\system32\inetsrv\appcmd set config "$site" /section:handlers -accessPolicy:"Read,Script,Execute"}
但是我收到此錯誤信息爲每個站點當它遍歷它們時:
ERROR (message:Cannot find SITE object with identifier "Microsoft.IIs.PowerShell.Framework.ConfigurationElement".)
我在做什麼錯?我嘗試使用$ site變量的屬性:
$site.name
但即使這樣也行不通。我很茫然。謝謝!
試試'appcmd set config「$($ site.Name)」' –
這樣做!非常感謝!!! –