2017-04-06 11 views
0

Exchange 2010을, 내가 사용하고있는 Exchange 관리 셸 $mailidentities = Get-Mailbox | Get-MailboxPermission | where {$_.identity.tostring() -like "* STAFF/*" -and $_.identity.tostring() -NotLike "*Ex_Staff*" -and $_.User.tostring() -like "*SELF*" -and $_.IsInherited -eq $false} | Select-object Identity foreach ($mailidentity in $mailidentities) { Write-Host "$mailidentity" }Exchange 관리 셸 스트립 출력

결과는 @{Identity=domain/Group/UserName} 다시에만 domain/Group/UserName 얻을 수있는 올바른 구문 무엇입니까 반환에 다음? 최종 결과는 감독자 사서함에 대한 전체 액세스 권한을 각 사용자에게 할당하는 것입니다.

답변