mirror of
https://github.com/fleschutz/PowerShell.git
synced 2025-02-23 21:20:51 +01:00
Improve template.ps1
This commit is contained in:
parent
828a037b51
commit
e799e5f867
@ -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
|
||||||
|
Loading…
Reference in New Issue
Block a user