Improve template.ps1

This commit is contained in:
Markus Fleschutz 2021-08-26 12:38:08 +02:00
parent 828a037b51
commit e799e5f867

View File

@ -1,23 +1,29 @@
<# #requires -version 2
<#
.SYNOPSIS .SYNOPSIS
template.ps1 enter overview of script here
.DESCRIPTION .DESCRIPTION
Copy this template PowerShell script to write a new one enter brief description of script here
.INPUTS
enter inputs here (if any, otherwise state None)
.OUTPUTS
enter outputs here (if any, otherwise state None)
.EXAMPLE .EXAMPLE
PS> .\template.ps1 PS> .\template.ps1 enter example here (repeat this attribute for more than one example)
.LINK .LINK
https://github.com/fleschutz/PowerShell enter URL here
.NOTES .NOTES
Author: Markus Fleschutz Author: enter full name here
License: CC0 Creation Date: enter date here
License: enter license here
#> #>
param() # <- enter file parameter(s) here param() # enter file parameter(s) here
# <- enter function(s) here # enter function(s) here
try { try {
# <- enter workload here # ← enter instructions here
"✔️ Done." "✔️ Done."
exit 0 exit 0