首页 > 解决方案 > PowerShell 表列到以“,”分隔的字符串

问题描述

我正在尝试将“键”列下的值转换为用“,”分隔的单个字符串

$TheTable = (get-command get-mailbox).Parameters 

命令返回:

Key                    Value                                         
---                    -----                                         
ErrorAction            System.Management.Automation.ParameterMetadata
IncludeInactiveMailbox System.Management.Automation.ParameterMetadata
Verbose                System.Management.Automation.ParameterMetadata
OutVariable            System.Management.Automation.ParameterMetadata

我正在努力实现:

$TheTable = "ErrorAction,IncludeInactiveMailbox,Verbose,OutVariable"

当我尝试的一切(foreach 循环,.ToString)返回时,我完全迷失了:

System.Collections.Generic.Dictionary`2[System.String,System.Management.Automation.ParameterMetadata],

有没有办法做到这一点?

标签: stringpowershellhashtable

解决方案


  • 要获取哈希表/字典的键,请使用其.Keys属性。

  • 要将字符串集合转换为带有分隔符的单个字符串,请使用-join运算符。

所以:

$TheTable = (get-command get-mailbox).Parameters.Keys -join ","

推荐阅读