Haha, run into a tweet from "nohandle" earlier today that made me laugh out loud. Enabling PowerShell Hardcore Mode 🙂
Enabling PowerShell Hardcore Mode
Hardcode Mode basically means that you configure PowerShell to shutdown the computer if you type in a command that does not exist.
Note: do NOT do this on any production machine, or at least don't yell at me if the machine turns off 🙂
$ExecutionContext.InvokeCommand.CommandNotFoundAction = { Stop-Computer -Force }

As long as you don't mistype any command, all is well. But one single typo, and this happens:

Happy Deployment, Johan
This is awesome. I think I'll try replacing restart-computer with exit, in other words I have to start all over again if I fuck up, lol.