Windows-Server-2008

如何使用 IIS7 APPCMD 按 ID 引用站點?

  • September 2, 2009

我知道如何通過名稱引用站點來停止和啟動它?例如:

appcmd stop site /site.name:"Microsoft SharePoint Administration"

如何使用其 IIS ID 引用站點?我嘗試了這些變化:

appcmd start stop /site.id:2
appcmd start stop /site.id:"2"
appcmd start stop /site.id:2
appcmd start site /section:sites /[id='2']

但是它們都返回以下錯誤:

ERROR ( message:Must specify the SITE object with identifier. )

嗯 - 這有效:

appcmd.exe list site -id:2

這不會:

appcmd.exe stop site -id:2

引用自:https://serverfault.com/questions/61399