溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

SFB 項(xiàng)目經(jīng)驗(yàn)-61-跨林遷移通訊組-Export the Distribution Groups

發(fā)布時(shí)間:2020-06-28 01:33:43 來源:網(wǎng)絡(luò) 閱讀:198 作者:CTO_LiuJinFeng 欄目:建站服務(wù)器

SFB 項(xiàng)目經(jīng)驗(yàn)-61-跨林遷移通訊組-Export the Distribution Groups

用戶需求:

客戶在跨林遷移Exchange 2010到2010的時(shí)候,需要遷移很多通訊組,其中通訊組又包括許多用戶。

如何遷移是最簡(jiǎn)單,最方便呢?

通過以下步驟就可以實(shí)現(xiàn)跨林批量遷移通訊組。

解決方法:

*********************

1.用戶域(導(dǎo)出-通訊組)

*********************

####################################################

Active Directory Module (ADM) for Windows PowerShell

####################################################

Export the Distribution Groups

Get-ADGroup -Filter {GroupCategory -eq "Distribution"}|select Name | Export-Csv -Path "c:\Export\DGList.csv"

*********************

2.目標(biāo)域(導(dǎo)入-通訊組)

*********************

&&&&&&&&&&&&&&&&&&&&&&&&&

Exchange Management Shell

&&&&&&&&&&&&&&&&&&&&&&&&&

imported the distribution groups

Import-Csv "C:\Export\DGList.csv" | ForEach {New-DistributionGroup -Name $_.Name}

******************************

3.用戶域(導(dǎo)出-通訊組-中-用戶)

******************************

####################################################

Active Directory Module (ADM) for Windows PowerShell

####################################################

Get-ADGroup -Filter {GroupCategory -eq "Distribution"}| ForEach-Object{

$group=$_

$users=Get-ADGroupMember -Identity $group

foreach ($dguser in $users){

New-Object -TypeName PSobject -Property @{

SAM=$dguser.SamAccountName

Group=$group.name

}

}

}|Export-Csv -Path "c:\Export\DGusers.csv"

#TYPE System.Management.Automation.PSCustomObject

"SAM","Group"

"user1","DG1"

"user2","DG1"

"user3","DG2"

"user3","DG2"

"user1","DG3"

"user3","DG3"

******************************

4.目標(biāo)域(導(dǎo)入-通訊組-中-用戶)

******************************

&&&&&&&&&&&&&&&&&&&&&&&&&

Exchange Management Shell

&&&&&&&&&&&&&&&&&&&&&&&&&

Import-Csv "C:\Export\DGusers.csv" | ForEach{Add-DistributionGroupMember -Identity $_.Group -Member $_.SAM}

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI