SharePoint_Remove_Site.ps1

function SharePoint-RemoveSite {
    param (
        [string]$Identity
    )

    Remove-SPOSite -Identity $Identity
}