Steps to Delete sites collections using Powershell
script by importing CSV file
$adminSiteUrl ="https://tenant-admin.sharepoint.com"
$cred =
Get-Credential
Connect-SPOService
$adminSiteUrl -Credential $cred
$filepath="C:\GK\PowerShell Scripts\Deletion of Site Collections
in CSV\Updated Gidc sites.csv"
$CSVData = Import-CSV -path $filepath
$SiteUrl="https://tenant.sharepoint.com/sites/TestSiteUsingAF";
Remove only one site
Remove-SPOSite -Identity $SiteUrl -NoWait
Remove-SPOSite -Identity
$SiteUrl -confirm:$false
Remove multiple
sites which are listed CSV
foreach($row in $CSVData)
{
write-host "Deleteing Site " + $row.Url
Remove-SPOSite -Identity $row.Url -confirm:$false
}
Below command will get all site collections under Bin
folder
Get-SPODeletedSite
No comments:
Post a Comment