是否可以在Powershell脚本帮助字符串中为示例部分提供自定义标题?

时间:2017-08-10 20:24:30

标签: powershell

现在,示例部分已编号。我希望他们有我自己的自定义标题。

我有一个带有帮助的PS脚本 - https://gist.github.com/MarkKharitonov/91698caf8c695902eacde2b6c7825bf1

那里有三个例子。第一个是:

.EXAMPLE
    cd "D:\tmp\cantestr52 - 06-09-2017"
    #############
    # The User Config File
    #############

    PS D:\tmp\cantestr52 - 06-09-2017> cat C:\Users\mkharitonov\runcdb.config.ps1
    $Sosex = "E:\Utils\sosex\64\sosex.dll"
    $CDB = "e:\Program Files (x86)\Windows Kits\10\Debuggers\x64\cdb.exe"
    $SymbolsCache = "E:\Symbols"

它呈现如下:

-------------------------- EXAMPLE 1 --------------------------

C:\PS>cd "D:\tmp\cantestr52 - 06-09-2017"

#############
# The User Config File
#############

PS D:\tmp\cantestr52 - 06-09-2017> cat C:\Users\mkharitonov\runcdb.config.ps1
$Sosex = "E:\Utils\sosex\64\sosex.dll"
$CDB = "e:\Program Files (x86)\Windows Kits\10\Debuggers\x64\cdb.exe"
$SymbolsCache = "E:\Symbols"

不理想。我希望用户配置文件作为示例标题。但是,我不能在.EXAMPLE下立即使用它,因为PowerShell会在 PS C:> 之前添加它 - 请参阅Powershell does not render my script help correctly

有可能吗?

1 个答案:

答案 0 :(得分:3)

不,使用当前的帮助系统是不可能的。