powershell comment code example
Example 1: powershell multiline comment
<#
MULTILINE
COMMENT
HERE
#>
Example 2: powershell comment
Single line comment:
# This is a comment
For PowerShell v2 and newer you can do also multiline comments:
<#
This
is
a multiline
comment
#>