【发布时间】:2020-05-22 03:17:16
【问题描述】:
例如,在阅读 Get-Process 文档后,我知道 Get-Process 将返回 System.Diagnostics.Process 的集合,但我怎么能在 cmdline 中知道呢?
有一些像'type'这样的cmd吗?这将返回 cmd 的函数签名,
喜欢
>> type Get-Process
>> Vec<Struct Process {
BasePriority:String // Gets the base priority of the associated process.
}>
【问题讨论】:
-
Get-Process | Get-Member
标签: windows powershell