Summary: Use Windows PowerShell multiple-line comments in your script or from the console.
How do you type a multiple-line comment?
Begin the comment with the <# tag, and end the comment with the #> tag:
<#
this is a comment
on several
different
lines
#>
0 comments