0
プロパティのハッシュテーブル内の2つのオブジェクトの新しいハッシュテーブルに
$names.add = Foreach ($A in $grps.keys) {Get-DistributionGroupMember -
Identity '$A' | select name | Group-Object -Propertyname -AsHashTable}
私は次のエラーに
The property 'add' cannot be found on this object. Verify that the property exists and can be set.
At line:1 char:1
+ $names.add = Foreach ($A in $grps.keys) {Get-DistributionGroupMember -Identity ' ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : InvalidOperation: (:) [], RuntimeException
+ FullyQualifiedErrorId : PropertyNotFound
を取得
助けを歓迎します
「$ names」とは何ですか?どのようにして最初にそれを作りましたか? –
名前がどのように作成されたか$ names = '{ – user1959380
'$ names [' add '] = foreach(...){...}' –