gpt4 book ai didi

powershell - 使用 Get-Help cmdlet 以相同格式显示基于注释的帮助

转载 作者:行者123 更新时间:2023-12-03 06:49:36 25 4
gpt4 key购买 nike

我正在尝试使用 Get-Help cmdlet 以与显示从 XML 文件生成的 cmdlet 帮助主题相同的格式显示基于注释的帮助。 about_Comment_based_Help 中记录了执行此操作的能力。在 TechNet 上,但是当我对脚本执行 get-help cmdlet 时,我只得到返回的脚本名称。任何帮助将不胜感激!

PS C:\Admin> Get-Help .\checksystem.ps1 -full
checksystem.ps1

检查system.ps1脚本:

function IsAlive {
<#
.DESCRIPTION
Checks to see whether a computer is pingable or not.

.PARAMETER computername
Specifies the computername.

.EXAMPLE
IsAlive -computername testwks01

.NOTES
This is just an example function.
#>


param (
$computername
)
Test-Connection -count 1 -ComputerName $computername -TimeToLive 5 |
Where-Object { $_.StatusCode -eq 0 } |
Select-Object -ExpandProperty Address
}

IsAlive -computername 192.168.1.1

最佳答案

它会起作用,但您正在尝试运行脚本的“获取帮助”。您已将帮助添加到该函数中。如果您获取脚本,然后输入 get-help isalive,您将看到该函数的帮助。

. .\checksystem.ps1 ; get-help isalive -full

关于powershell - 使用 Get-Help cmdlet 以相同格式显示基于注释的帮助,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4674587/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com