Get-SPDeletedSite
获取已删除网站集的列表。
语法
Get-SPDeletedSite
[-Identity] <SPDeletedSitePipeBind>
[-AssignmentCollection <SPAssignmentCollection>]
[-Confirm]
[-ContentDatabase <SPContentDatabasePipeBind>]
[-DateTimeFrom <String>]
[-DateTimeTo <String>]
[-Limit <String>]
[-SiteSubscription <SPSiteSubscriptionPipeBind>]
[-WebApplication <SPWebApplicationPipeBind>]
[-WhatIf]
[<CommonParameters>]
说明
此 cmdlet 包含多个参数集。 您可以只使用来自一个参数集的参数,也可以不合并来自不同参数集的参数。 若要详细了解如何使用参数集,请参阅 Cmdlet 参数集。
此 cmdlet 在 SharePoint Server with Service Pack 1 (SP1) 和 SharePoint Foundation with Service Pack 1 (SP1) 中引入。
使用 Get-SPDeletedSite cmdlet 和 Identity 参数可显示已删除网站集的列表。 如果不指定参数,则显示服务器场中所有已删除的网站集。 已删除的网站是逐步删除过程中的网站。 有关逐步删除的详细信息,请参阅 Remove-SPSite。
与 Get-SPSite cmdlet 不同,该 cmdlet 使用标识参数的主机名和方案 (即 https://server_name),所有 SPDeletedSite cmdlet 的 identity 参数值都使用相对于服务器的 URL。 通常,相对 URL 以左斜线字符 (/) 开头,同时该字符还指示根网站。
有关相对于服务器的 URL 的其他信息或了解有关绝对 URL 和相对 URL 的一般概念,请参阅服务器相对 URL 属性 (https://msdn.microsoft.com/en-us/library/microsoft.sharepoint.spsite.serverrelativeurl.aspx) 或了解绝对和相对 URL 地址 (https://msdn.microsoft.com/en-us/library/bb208688(office.12).aspx) 。
有关适用于 SharePoint 产品的 Windows PowerShell 的权限和最新信息,请参阅 SharePoint Server cmdlet。
示例
------------------示例 1---------------------
Get-SPDeletedSite -Identity 610857cb-8414-4a89-8bf3-ad3628f6c86c
该示例通过使用网站 ID 获取特定的已删除网站集。
------------------示例 2---------------------
Get-SPDeletedSite "/"
该示例获取根网站中已删除的网站集。
------------------示例 3---------------------
Get-SPDeletedSite '/Site/cat*'
该示例匹配包含字符串"cat"的任意组合的已删除网站集。 星号 (*) 通配符请求匹配多个字符。
参数
-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 2010, SharePoint Server 2013, SharePoint Server 2016, SharePoint Server 2019 |
-Confirm
执行命令前,看到确认提示。
有关详细信息,请键入以下命令:get-help about_commonparameters
Type: | SwitchParameter |
Aliases: | cf |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
Applies to: | SharePoint Server 2010, SharePoint Server 2013, SharePoint Server 2016, SharePoint Server 2019 |
-ContentDatabase
指定从中列出网站集的内容数据库的 GUID。
键入的值必须是有效数据库名称(格式为 SPContentDB01)或有效 GUID(如 12345678-90ab-cdef-1234-567890bcdefgh)。
Type: | SPContentDatabasePipeBind |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | True |
Accept wildcard characters: | False |
Applies to: | SharePoint Server 2010, SharePoint Server 2013, SharePoint Server 2016, SharePoint Server 2019 |
-DateTimeFrom
键入的值必须是管理语言的区域性特定的有效日期时间格式,如美国英语的日期时间格式为 2/16/2007 12:15:12。
Type: | String |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
Applies to: | SharePoint Server 2010, SharePoint Server 2013, SharePoint Server 2016, SharePoint Server 2019 |
-DateTimeTo
键入的值必须是管理语言的区域性特定的有效日期时间格式,如美国英语的日期时间格式为 2/16/2007 12:15:12。
Type: | String |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
Applies to: | SharePoint Server 2010, SharePoint Server 2013, SharePoint Server 2016, SharePoint Server 2019 |
-Identity
指定要获取的网站集的 URL 或 GUID。
该标识可以是格式为 /sites/site_name 的相对于服务器的有效 URL 或有效 GUID,例如 12345678-90ab-cdef-1234-567890bcdefgh。
Type: | SPDeletedSitePipeBind |
Position: | 1 |
Default value: | None |
Required: | True |
Accept pipeline input: | True |
Accept wildcard characters: | False |
Applies to: | SharePoint Server 2010, SharePoint Server 2013, SharePoint Server 2016, SharePoint Server 2019 |
-Limit
限制要返回的网站集的最大数目。 默认值为 1000。
键入的值必须为有效非负数。 指定 ALL 将返回给定范围的所有网站集。
Type: | String |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
Applies to: | SharePoint Server 2010, SharePoint Server 2013, SharePoint Server 2016, SharePoint Server 2019 |
-SiteSubscription
指定要从其获取网站集的网站订阅。
键入的值必须是有效 URL(格式为 https://server_name)或有效 GUID(如 12345678-90ab-cdef-1234-567890bcdefgh)。
Type: | SPSiteSubscriptionPipeBind |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | True |
Accept wildcard characters: | False |
Applies to: | SharePoint Server 2010, SharePoint Server 2013, SharePoint Server 2016, SharePoint Server 2019 |
-WebApplication
指定从其列出网站的 Web 应用程序的 URL、GUID 或名称。
键入的值必须是有效 URL(格式为 https://server_name);有效 GUID(如 12345678-90ab-cdef-1234-567890bcdefgh);或 Web 应用程序名称(如 WebApplication1212)。
Type: | SPWebApplicationPipeBind |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | True |
Accept wildcard characters: | False |
Applies to: | SharePoint Server 2010, SharePoint Server 2013, SharePoint Server 2016, SharePoint Server 2019 |
-WhatIf
显示一条描述命令作用的消息,而不执行命令。
有关详细信息,请键入以下命令:get-help about_commonparameters
Type: | SwitchParameter |
Aliases: | wi |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
Applies to: | SharePoint Server 2010, SharePoint Server 2013, SharePoint Server 2016, SharePoint Server 2019 |