powershell 删除WebApplication中的所有网站集。
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了powershell 删除WebApplication中的所有网站集。相关的知识,希望对你有一定的参考价值。
# ----------------------------------------------
# Author: Romain Blanchard
# Date: 06.02.2014
# Description: Delete all site collection in Web Application.
# ----------------------------------------------
$webappurl = "http://rbla-sp2010-001:81"
$webapp = Get-SPWebApplication $webappurl
foreach ($sites in $webapp.Sites)
{
Remove-SPSite $sites.Url –Confirm:$False
}
# Delete completely site collections from SPDeletedSite
Get-SPDeletedSite | Remove-SPDeletedSite
以上是关于powershell 删除WebApplication中的所有网站集。的主要内容,如果未能解决你的问题,请参考以下文章
powershell 删除powershell中的交接点
powershell Powershell:删除Git工作树
powershell PowerShell删除Readonly
powershell Powershell:删除过时的本地Git跟踪分支
powershell 在Gac中安装/删除dll - Powershell
powershell 在Gac中安装/删除dll - Powershell