Powershell分享1--动态组,静态组

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Powershell分享1--动态组,静态组相关的知识,希望对你有一定的参考价值。

一、创建

1.静态组
        New-DistributionGroup  -Name "PingTai"   -Type Distribution
2.动态组
        New-DynamicDistributionGroup   -Name "group" -RecipientContainer "corp.homelink.com.cn/链家网/CFO线/"  -ConditionalCustomAttribute1  "经纪人"  -IncludedRecipients MailboxUsers
3.批量创建动态组
        import-csv C:\Users\fanyunxiao\批量新建动态邮件组.csv  | foreach {New-DynamicDistributionGroup -Name  $_.name  -RecipientContainer  $_.recipientContainer   -ConditionalCustomAttribute1   $_.ConditionalCustomAttribute1  -IncludedRecipients  mailboxusers}

二、添加人员

1.静态组
        import-csv C:\Users\fanyunxiao\批量添加静态组成员.csv | foreach {Add-DistributionGroupMember "group0101" -Member $_.mail}

三、查询动态组人员

            Get-Recipient -RecipientPreviewFilter (Get-DynamicDistributionGroup -Identity **[email protected]**).LdapRecipientFilter -OrganizationalUnit (Get-DynamicDistributionGroup -Identity **[email protected]**).RecipientContainer -ResultSize unlimited

以上是关于Powershell分享1--动态组,静态组的主要内容,如果未能解决你的问题,请参考以下文章

python中元组和列表有啥区别

如何在css中把一组静态图片改成动态滚动的图片

SwiftUI:如何更新由一组静态数据驱动的列表并从另一组动态数据中提取信息位?

Azure DevOps 发布管道的动态变量组

RTOS中动态内存和静态内存管理机制

RTOS中动态内存和静态内存管理机制