如何在 PowerShell (1.0 或 2.0)中注释掉代码?
在 PowerShell V1 中,只能#将其后的文本设为注释。
#
# This is a comment in PowerShell
在 PowerShell V2<# #>中,可用于块注释,更具体地说,可用于帮助注释。
<# #>
#REQUIRES -Version 2.0 <# .SYNOPSIS A brief description of the function or script. This keyword can be used only once in each topic. .DESCRIPTION A detailed description of the function or script. This keyword can be used only once in each topic. .NOTES File Name : xxxx.ps1 Author : J.P. Blanc (jean-paul_blanc@silogix-fr.com) Prerequisite : PowerShell V2 over Vista and upper. Copyright 2011 - Jean Paul Blanc/Silogix .LINK Script posted over: http://silogix.fr .EXAMPLE Example 1 .EXAMPLE Example 2 #> Function blabla {}
有关更多说明.SYNOPSIS并.*参见about_Comment_Based_Help。
.SYNOPSIS
.*
备注:这些函数注释由Get-HelpCmdLet 使用,可以放在关键字之前,也可以放在代码本身Function的前面或后面。{}
Get-Help
Function
{}