PowerShell 管道输入 ByPropertyName
modules.txt给定一个包含以下内容的文本文件: Microsoft.Powershell.Archive Microsoft.Powershell.Management Microsoft.Powershell.Utility 我想要获取每个模块中定义的命令。 这有效: Get-Command -Module (Get-Content .\modules.txt) 但事实并非如此,尽管模块被定义为通过变量名接受管道输入: get-content .\modules.txt |select @{n='Module';e={$_}} | Get-Co...