Get-SPWebApplication
返回与给定条件匹配的所有 Web 应用程序。
语法
Default (默认值)
Get-SPWebApplication
[[-Identity] <SPWebApplicationPipeBind>]
[-AssignmentCollection <SPAssignmentCollection>]
[-IncludeCentralAdministration]
[<CommonParameters>]
说明
Get-SPWebApplication cmdlet 可返回与 Identity 参数指定的范围匹配的所有 Web 应用程序。 Identity 可以是 Web 应用程序的名称、URL 或 GUID。 如果未指定 Identity,则返回所有 Web 应用程序。
如果提供管理中心 Web 应用程序的具体标识或提供 IncludeCentralAdministration 标志,则仅返回管理中心 Web 应用程序。
有关适用于 SharePoint 产品的 Windows PowerShell 的权限和最新信息,请参阅 SharePoint Server cmdlet。
示例
示例 1
C:\PS>$w = Get-SPWebApplication https://sitename
此示例获取 的 https://sitename Web 应用程序并将其存储在变量中。
示例 2
Get-SPWebApplication -IncludeCentralAdministration | Where { $_.DefaultServerComment -eq "SharePoint Central Administration v4"} | Format-List *
此示例以列表的形式显示 SharePoint Central Administration Web 应用程序的所有公共属性。
参数
-AssignmentCollection
适用:SharePoint Server 2010、SharePoint Server 2013、SharePoint Server 2016 SharePoint Server 2019
管理对象以便正确进行处理。 使用 SPWeb 或 SPSite 等对象可能会耗用大量内存,而且在 Windows PowerShell 脚本中使用这些对象需要正确管理内存。 通过使用 SPAssignment 对象,可以将对象分配给变量,然后在不需要这些对象时对它们进行处理,以释放内存。 在使用 SPWeb、SPSite 或 SPSiteAdministration 对象时,如果不使用分配集合或 Global 参数,则会自动处理这些对象。
在使用 Global 参数时,所有对象均包含在全局存储中。 如果未立即使用对象,或未通过使用 Stop-SPAssignment 命令来处理对象,则可能会发生内存不足的情况。
参数属性
| 类型: | SPAssignmentCollection |
| 默认值: | None |
| 支持通配符: | False |
| 不显示: | False |
参数集
(All)
| Position: | Named |
| 必需: | False |
| 来自管道的值: | True |
| 来自管道的值(按属性名称): | False |
| 来自剩余参数的值: | False |
-Identity
适用:SharePoint Server 2010、SharePoint Server 2013、SharePoint Server 2016 SharePoint Server 2019
指定 Web 应用程序的名称、URL 或 GUID。
该类型必须是有效的 URL,格式 https://server_name为 ;GUID,格式为 1234-5678-9876-0987;或有效名称,格式为 SPWebApplication - 1212。
参数属性
| 类型: | SPWebApplicationPipeBind |
| 默认值: | None |
| 支持通配符: | False |
| 不显示: | False |
参数集
(All)
| Position: | 1 |
| 必需: | False |
| 来自管道的值: | True |
| 来自管道的值(按属性名称): | False |
| 来自剩余参数的值: | False |
-IncludeCentralAdministration
适用:SharePoint Server 2010、SharePoint Server 2013、SharePoint Server 2016 SharePoint Server 2019
将管理中心 Web 应用程序包含在可返回的 Web 应用程序的集合中。 IncludeCentral Administration 参数仍需满足所提供的所有其他筛选器的要求。
参数属性
| 类型: | SwitchParameter |
| 默认值: | None |
| 支持通配符: | False |
| 不显示: | False |
参数集
(All)
| Position: | Named |
| 必需: | False |
| 来自管道的值: | False |
| 来自管道的值(按属性名称): | False |
| 来自剩余参数的值: | False |
CommonParameters
此 cmdlet 支持通用参数:-Debug、-ErrorAction、-ErrorVariable、-InformationAction、-InformationVariable、-OutBuffer、-OutVariable、-PipelineVariable、-ProgressAction、-Verbose、-WarningAction 和 -WarningVariable。 有关详细信息,请参阅 about_CommonParameters。