PowerShell Multiline/Block Comment Tutorial

PowerShell provides the multiline comment or block comment in order to create comments which wraps multiple lines. Even PowerShell provides single line comment too but it is not useable to create long description. PowerShell multiline or block comments can be used to explain the complete PowerShell module, specific function, part of the PowerShell script and … Read more

PowerShell Comment Tutorial

PowerShell Comment Tutorial

PowerShell provides two types of comments called single-line comment and multiline comment. Comments are used to explain and describe PowerShell scripts properly. Comments are not executed by the PowerShell engine and omitted. The PowerShell comments can be used to describe and explain a function, line, structure, etc. Also, the PowerShell comments can be used to … Read more