Skip to content

Instantly share code, notes, and snippets.

@ferrata
Created July 19, 2021 17:46
Show Gist options
  • Save ferrata/97eefa07374da264cdfd8a2431418cc9 to your computer and use it in GitHub Desktop.
Save ferrata/97eefa07374da264cdfd8a2431418cc9 to your computer and use it in GitHub Desktop.
Set-StrictMode -Version Latest
$ErrorActionPreference = "Stop"
function Main() {
# ...
}
try {
Main
}
catch {
$_.ErrorDetails
$_.ScriptStackTrace
throw
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment