プロジェクト

全般

プロフィール

配布リスト一覧の出力 » 履歴 » バージョン 1

蒲池 晃, 2023/09/26 08:56

1 1 蒲池 晃
h1. 配布リスト一覧の出力
2 1 蒲池 晃
3 1 蒲池 晃
<pre>
4 1 蒲池 晃
$temp=foreach($i in Get-DistributionGroup){Get-DistributionGroupMember -Identity $i.PrimarySmtpAddress | Select @{n="GroupName";e={$i.DisplayName}},@{n="GroupType";e={$i.recipienttype}},DisplayName,PrimarySmtpAddress}
5 1 蒲池 晃
</pre>
6 1 蒲池 晃
7 1 蒲池 晃
<pre>
8 1 蒲池 晃
$temp | Export-Csv -Encoding UTF8 -NoTypeInformation -Path C:\temp\MLMember2.Csv
9 1 蒲池 晃
</pre>
10 1 蒲池 晃
11 1 蒲池 晃
参考URL
12 1 蒲池 晃
https://it-bibouroku.hateblo.jp/entry/PSgroup
13 1 蒲池 晃
14 1 蒲池 晃
メンバー追加
15 1 蒲池 晃
<pre>
16 1 蒲池 晃
Add-DistributionGroupMember -Identity GROUPNAME -member USERNAME
17 1 蒲池 晃
</pre>