Posts

Showing posts from April, 2020

Unofficial Powershell Strict Mode

Use Powershell Strict Mode (Unless You Love Debugging) Set-StrictMode  -Version  2 $ErrorActionPreference  =  "Stop" # ^^^ Inspired by  http://redsymbol.net/articles/unofficial-bash-strict-mode/