Powershell template: Difference between revisions

From roonics
Jump to navigation Jump to search
No edit summary
No edit summary
Line 1: Line 1:
Basic template for use when creating a script:
Basic template for use when creating a script:
<pre>
<#
.SYNOPSIS
.DESCRIPTION
.EXAMPLE
.OUTPUTS
.NOTES
#>
</pre>




[[Category:PowerShell]]
[[Category:PowerShell]]

Revision as of 11:25, 5 April 2024

Basic template for use when creating a script:

<#
.SYNOPSIS

.DESCRIPTION

.EXAMPLE

.OUTPUTS

.NOTES

#>