Skip to content

Instantly share code, notes, and snippets.

@macostag
Created September 27, 2018 02:48
Show Gist options
  • Save macostag/da8c13dd253d18376552ea7ad2d97a0d to your computer and use it in GitHub Desktop.
Save macostag/da8c13dd253d18376552ea7ad2d97a0d to your computer and use it in GitHub Desktop.
Advanced powershell function template.
function <name> {
[cmdletBinding()]
param(
)
BEGIN{}
PROCESS{}
END{}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment