Я пытаюсь преобразовать значения в столбце 'key' в одну строку, разделенную символом ','
$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 loop, .ToString), возвращает:
System.Collections.Generic.Dictionary`2[System.String,System.Management.Automation.ParameterMetadata],
Есть ли способ сделать это тоже?