了解应用程序池、绑定的脚本

了解应用程序池、绑定的脚本

我们是否有任何 powershell 命令或 powershell 脚本来获取网站详细信息,如网站名称、关联的应用程序池、.Net 版本、映射到网站的绑定。

我们是否有单行命令或任何脚本可以从中获取详细信息?

例如:

Name            ApplicationPool   .NetVersion     Bindings                 
Defaultwebsite  DefaultApppool    v4.001234       www.hello.com

答案1

您可以使用 powershell 模块 WebAdministration 来查看命令行:

(Get-Module WebAdministration).ExportedCmdlets

例如获取网站的命令:

Get-Website

获取 AppPools 的名称:

(Get-ChildItem IIS:\AppPools\).Name

更多信息:https://technet.microsoft.com/ru-ru/library/ee790599.aspx

相关内容