1. ホーム
  2. powershell

[解決済み] PowerShellでコードをコメントアウトする方法とは?

2022-03-18 04:55:12

質問

でのコメントアウトはどのように行うのですか? 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 ([email protected])
    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.* 見る コメント欄のヘルプについて .

備考 これらの関数コメントは Get-Help CmdLetのキーワードの前に置くことができます。 Function または {} コード自体の前または後に