Delete Userprofile by powershell

just change you user name!

Get-CimInstance -Class Win32_UserProfile | Where-Object { $_.LocalPath.split('\')[-1] -eq 'Asghari' } | Remove-CimInstance

Last updated