Wednesday, May 27, 2020

How to Comment Out Code in PowerShell Script

o comment out a single line, put '#' in the beginning:
Single line comment
To comment out multiple lines, put <# at the beginning and #> at the end of code.
Multi line comment in PowerShell