แสดงบทความที่มีป้ายกำกับ exchange2010 แสดงบทความทั้งหมด
แสดงบทความที่มีป้ายกำกับ exchange2010 แสดงบทความทั้งหมด

20/05/2563

Exchange 2010 จองห้องประชุมแล้วไม่มีอีเมลแจ้งสถานะการจอง

 ปัญหาการจองห้องประชุมแล้วไม่มีอีเมลแจ้งสถานะการจองกลับไปยังผู้ใช้

1. ตรวจสอบ properties ของ room mailbox หัวข้อ Resource General ว่าเลือก Enable the Resource Booking Attendant ไว้แล้ว


2. ตรวจสอบสถานะ Service Microsoft Exchange Mailbox Assistants ว่าขึ้น Started แล้วหรือกด Restart Service สักรอบ










3. เรียบร้อยแล้ว ตรวจสอบอีเมลตอบรับของห้องประชุมใหม่





19/03/2562

Exchange: Share a users calendar via Management Shell

Use the Add-MailboxFolderPermission cmdlet to add folder-level permissions for users in mailboxes.

To modify the permissions that are assigned to the user on a mailbox folder, use the Set-MailboxFolderPermission cmdlet. To remove all permissions that are assigned to a user on a mailbox folder, use the Remove-MailboxFolderPermission cmdlet.

Example

Add-MailboxFolderPermission -Identity ayla@contoso.com:\Calendar -User julia@contoso.com -AccessRights  LimitedDetails

this example share Ayla as a calendar to Julia's mailbox, And view availability data with subject and location.

Ref: https://docs.microsoft.com/en-us/powershell/module/exchange/mailboxes/add-mailboxfolderpermission?view=exchange-ps

23/01/2561

Exchange 2010 : List Mailbox Sizes

ขั้นตอนการ Export ขนาดกล่องจดหมายของผู้ใช้ และเรียงจากขนาดมากสุดมาน้อยสุด

1. Login to your Exchange 2010 server
2. Run Exchange PowerShell as Administrator
3. Run PowerShell string
Get-MailboxStatistics -Database "Mailbox Database XXXXXXXXXXXXX" | Select DisplayName, ItemCount, TotalItemSize | Sort-Object TotalItemSize -Descending | Export-CSV C:\filename.csv
4. Alter the mailbox database number and the export address as required

Ref: community.spiceworks.com