powershell 使用PowerShell删除或删除SharePoint站点

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了powershell 使用PowerShell删除或删除SharePoint站点相关的知识,希望对你有一定的参考价值。

Add-PsSnapin Microsoft.SharePoint.PowerShell
# Completely deletes the specified Web (including all subsites)
function RemoveSPWebRecursively(
    [Microsoft.SharePoint.SPWeb] $web)
{
    Write-Debug "Removing site ($($web.Url))..."
    
    $subwebs = $web.GetSubwebsForCurrentUser()
    
    foreach($subweb in $subwebs)
    {
        RemoveSPWebRecursively($subweb)
        $subweb.Dispose()
    }
    
    $DebugPreference = "SilentlyContinue"
    Remove-SPWeb $web -Confirm:$false
    $DebugPreference = "Continue"
}

$DebugPreference = "SilentlyContinue"
$web = Get-SPWeb "http://portal.opwftg.com/sites/OPWSS/Teams/Safety/OES2"
$DebugPreference = "Continue"

If ($web -ne $null)
{
    RemoveSPWebRecursively $web
    $web.Dispose()
}
Remove-SPWeb "http://portal.opwftg.com/sites/OPWSS/Teams/Safety/FCC/Cells/Supermarket" -Confirm:$false

以上是关于powershell 使用PowerShell删除或删除SharePoint站点的主要内容,如果未能解决你的问题,请参考以下文章

powershell 此PowerShell脚本从子站点组等于值的所有子站点中删除组。如果要删除gro,请使用此选项

如何使用 PowerShell 从 MSMQ 消息队列中删除特定消息

如果不使用,则删除文件夹和子文件夹(Powershell)

如何使用 PowerShell 删除空子文件夹?

为啥 PowerShell(使用 Perl)在简单的打印语句中删除双引号?

使用 Powershell 删除不存在的网络适配器