切换到宽版
  • 5963阅读
  • 0回复

[求助]使用脚本设置日志权限 [复制链接]

上一主题 下一主题
 
只看楼主 倒序阅读 0楼  发表于: 2011-03-13
— 本帖被 YOYO 从 Exchange 脚本中心 移动到本区(2015-06-25) —
  • 脚本环境:PowerShell
  • 适合版本:Exchange 2010
  • 适用平台:
  • 脚本作用:设置日志权限
使用此脚本可以对运行Exchange 2010的计算机中的日历权限进行设置。


<#


NAME: Set-CalendarPermissions.ps1


AUTHOR: Jan Egil Ring
EMAIL: jan.egil.ring@powershell.no


COMMENT: Script to set calendar-permission for mailboxes in Exchange Server 2010.
          For a list of valid AccessRights, see http://technet.microsoft.com/en-us/library/ff522363.aspx
          More information: http://blog.powershell.no/2010/09/20/managing-calendar-permissions-in-exchange-server-2010


You have a royalty-free right to use, modify, reproduce, and
distribute this script file in any way you find useful, provided that
you agree that the creator, owner above has no warranty, obligations,
or liability for such use.


VERSION HISTORY:
1.0 19.09.2010 - Initial release


#>


#requires -version 2


#Load Exchange Server 2010 Management Shell if not loaded. You may delete/comment out this step if you are running the script from the Exchange Management Shell
if (-not (Get-PSSnapin | Where-Object {$_.Name -like "Microsoft.Exchange.Management.PowerShell.E2010"})){
Add-PSSnapin Microsoft.Exchange.Management.PowerShell.E2010
}


#Custom variables
$mailboxes = Get-Mailbox -Database "Mailbox Database A"
$AccessRights = "Reviewer"


#Loop through all mailboxes
foreach ($mailbox in $mailboxes) {


#Retrieve name of the user`s calendar
$calendar = (($mailbox.SamAccountName)+ ":\" + (Get-MailboxFolderStatistics -Identity $mailbox.SamAccountName -FolderScope Calendar | Select-Object -First 1).Name)


#Check if calendar-permission for user "Default" is set to the default permission of "AvailabilityOnly"
    if (((Get-MailboxFolderPermission $calendar  | Where-Object {$_.User -like "Default"}).AccessRights) -like "AvailabilityOnly" ) {


    Write-Host "Updating calendar permission for $mailbox..." -ForegroundColor Yellow


    #Set calendar-permission for user "Default" to value defined in variable $AccessRights
    Set-MailboxFolderPermission -User "Default" -AccessRights $AccessRights -Identity $calendar
    }
}

分享到
快速回复
限60 字节
 
上一个 下一个