What is the equivalent of rm -rf in Powershell?
This is probably what you're looking for. Seems like a little effort with a search engine would've reached the same conclusion.
Remove-Item C:\MyFolder -Recurse -Force
Or, as a shorthand:
rm <directory-path> -r -f
For more information see the Remove-Item
help page.