Got it, you want a simple way to delete the folder as an admin.
Even with admin rights, Windows sometimes protects folders with hidden settings that stop deletion unless you use -Force. That’s why the longer command works.
If you want, I can help you create a short PowerShell shortcut like this:
function rmd($path) { Remove-Item $path -Recurse -Force }
Then you can just type:
rmd .\blog
Also, make sure no programs are using the folder, as that can block deletion too.
Let me know if you want a hand setting this up!
Best,
Udit