Sharepoint 2010 Delete all imported profile users by PowerShell

#PowerShell Script – Delete All User Profiles – SharePoint 2010 #The scripts is distributet “as-is.” Use it on your own risk. The author give no warranties, guarantees or conditions. #Add SharePoint PowerShell SnapIn if not already added if ((Get-PSSnapin “Microsoft.SharePoint.PowerShell” -ErrorAction SilentlyContinue) -eq $null) { Add-PSSnapin “Microsoft.SharePoint.PowerShell” } $site = new-object Microsoft.SharePoint.SPSite(“http://blog.bugrapostaci.com:8090”); $ServiceContext = [Microsoft.SharePoint.SPServiceContext]::GetContext($site); … Continue reading Sharepoint 2010 Delete all imported profile users by PowerShell