Get-SPAlternateURL
返回符合给定条件集的所有备用 URL。
语法
Get-SPAlternateURL
[[-Identity] <SPAlternateUrlPipeBind>]
-ResourceName <String>
[-AssignmentCollection <SPAssignmentCollection>]
[-Zone <SPUrlZone>]
[<CommonParameters>]
Get-SPAlternateURL
[[-Identity] <SPAlternateUrlPipeBind>]
-WebApplication <SPWebApplicationPipeBind>
[-AssignmentCollection <SPAssignmentCollection>]
[-Zone <SPUrlZone>]
[<CommonParameters>]
说明
此 cmdlet 包含多个参数集。 您可以只使用来自一个参数集的参数,也可以不合并来自不同参数集的参数。 若要详细了解如何使用参数集,请参阅 Cmdlet 参数集。
Get-SPAlternateURL cmdlet 返回与给定范围(由可选的 Identity 参数给定,或者由可选的 WebApplication、Zone 或 Resource 参数的组合给定)匹配的所有备用 URL。 添加的每一项条件都将缩小范围。 如果未指定任何条件,则返回所有备用 URL。
如果使用了 Identity 参数,那么只返回匹配该标识的特定备用 URL。 如果给定范围内不存在带有给定标识的备用 URL,那么不返回任何内容。
有关适用于 SharePoint 产品的 Windows PowerShell 的权限和最新信息,请参阅 SharePoint Server cmdlet。
示例
--------------示例 1-----------------
Get-SPAlternateURL -WebApplication https://sitename
此示例将显示给定 Web 应用程序的所有备用 URL。
--------------示例 2-----------------
Get-SPAlternateURL -ResourceName "MyResource"
此示例将显示给定资源的所有备用 URL。
参数
-AssignmentCollection
管理对象以便正确进行处理。 使用 SPWeb 或 SPSite 等对象可能会耗用大量内存,而且在 Windows PowerShell 脚本中使用这些对象需要正确管理内存。 通过使用 SPAssignment 对象,可以将对象分配给变量,然后在不需要这些对象时对它们进行处理,以释放内存。 在使用 SPWeb、SPSite 或 SPSiteAdministration 对象时,如果不使用分配集合或 Global 参数,则会自动处理这些对象。
在使用 Global 参数时,所有对象均包含在全局存储中。 如果未立即使用对象,或未通过使用 Stop-SPAssignment 命令来处理对象,则可能会发生内存不足的情况。
Type: | SPAssignmentCollection |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | True |
Accept wildcard characters: | False |
Applies to: | SharePoint Server Subscription Edition |
-Identity
指定要获取的备用 URL 的 URL 或 GUID。
该类型必须是格式为 12345678-90ab-cdef-1234-567890bcdefgh 的有效 GUID,或表单中的有效 URL https://server_name.
Type: | SPAlternateUrlPipeBind |
Position: | 1 |
Default value: | None |
Required: | False |
Accept pipeline input: | True |
Accept wildcard characters: | False |
Applies to: | SharePoint Server Subscription Edition |
-ResourceName
指定资源的名称,将从该资源中列出备用 URL。
Type: | String |
Position: | Named |
Default value: | None |
Required: | True |
Accept pipeline input: | False |
Accept wildcard characters: | False |
Applies to: | SharePoint Server Subscription Edition |
-WebApplication
指定 Web 应用程序,将从该 Web 应用程序中列出备用 URL。
Type: | SPWebApplicationPipeBind |
Position: | Named |
Default value: | None |
Required: | True |
Accept pipeline input: | False |
Accept wildcard characters: | False |
Applies to: | SharePoint Server Subscription Edition |
-Zone
指定五个区域中与备用 URL 关联的区域。
必须是有效区域: Default 、 Intranet 、 Internet 、 Extranet 或 Custom
Type: | SPUrlZone |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
Applies to: | SharePoint Server Subscription Edition |