更多的 appcmd 组合命令:

  修改网站的默认文档列表:

必备:CopyCodeappcmd组合命令:修改网站默认文档列表

  Copy Code

  appcmd set config /section:defaultDocument /enabled:true appcmd set config /section:defaultDocument /+files.[value='default.aspx']

  设置特定应用程序池的空闲超时时间:

  Copy Code

  appcmd set apppool /apppool.name:DefaultAppPool /processModel.idleTimeout:00:30:00

  启用或禁用特定网站的目录浏览功能:

  Copy Code

  appcmd set config /section:system.webServer/directoryBrowse /enabled:true

  修改请求限制的配置,例如增加最大请求长度:

  Copy Code

  appcmd set config /section:requestFiltering /requestLimits.maxAllowedContentLength:1048576

  创建一个新的应用程序集合并设置应用程序池:

  Copy Code

  appcmd add appcollection /name:NewAppCollection /add.[name='DefaultWebSite/MyApp'].path:/ /add.[name='DefaultWebSite/OtherApp'].path:/otherapp /add.[name='AnotherWebSite'].path:/

  设置网站的默认文档列表和 MIME 类型:

  Copy Code

  appcmd set config /section:defaultDocument /files.[value='index.html'] appcmd set config /section:staticContent /+"[fileExtension='.json',mimeType='application/json']"