• Outlook User
  • New Outlook app
  • Outlook.com
  • Outlook Mac
  • Outlook & iCloud
  • Developer
  • Microsoft 365 Admin
    • Common Problems
    • Microsoft 365
    • Outlook BCM
    • Utilities & Addins

Meeting Organizer's Name Appears in the Subject line

Slipstick Systems

› Exchange Server › Cmdlets › Meeting Organizer’s Name Appears in the Subject line

Last reviewed on May 1, 2019     34 Comments

Applies to: Exchange 2010, Exchange 2013, Exchange 2016, Exchange 2019, Office 365 Exchange

An administrator asked:

We're using Exchange with a mixture of Outlook clients. Meetings are showing up on the Resource Room calendars with the meeting organizer's name in the subject line. How do we remove it?

This is an Exchange issue, not Outlook. It needs to be changed on the Exchange server using the Set-CalendarProcessing cmdlet to change the DeleteSubject and AddOrganizertoSubject settings for the resource room.

In Exchange 2010 and newer, use the Set-CalendarProcessing cmdlet. The format is the same as for Exchange 2007, using $true if you want to have the organizer name in the subject and $false to remove the organizer:

Set-CalendarProcessing -identity meetingroom -DeleteComments $true -AddOrganizerToSubject $false -DeleteAttachments $true -DeleteSubject $true

In Exchange 2007, use the set-mailboxcalendarsettings cmdlet to change the DeleteSubject and AddOrganizertoSubject settings for the resource room.

Use the following PowerShell command to make the change, changing 'meetingroom' to the correct alias for your meeting room.

set-mailboxcalendarsettings -identity meetingroom -deletesubject $false -addorganizertosubject $false

More Information

Set-CalendarProcessing (Exchange 2010/2013/2016/2019 and Office 365)
Resource mailbox's calendar shows the organizer's name instead of the subject in an Exchange Server environment (MSKB)

For more information on using the set-mailboxcalendarsettings command, see How to Set Resource Booking Policies (Exchange 2007)

Meeting Organizer's Name Appears in the Subject line was last modified: May 1st, 2019 by Diane Poremsky
Post Views: 48

Related Posts:

  • Remove Cancelled Meeting Requests from Resource Calendar
  • Resource denied recurring meeting request
  • The question of the week this week involved resource calendars not all
    Booking meetings more than 180 days out
  • Schedule meetings only during working hours

About Diane Poremsky

A Microsoft Outlook Most Valuable Professional (MVP) since 1999, Diane is the author of several books, including Outlook 2013 Absolute Beginners Book. She also created video training CDs and online training classes for Microsoft Outlook. You can find her helping people online in Outlook Forums as well as in the Microsoft Answers and TechNet forums.

Comments

  1. Arsalan says

    September 14, 2017 at 5:08 am

    Hi Guys, Just to update you on above if anyone finds this Page and has the same issue, what i had...

    My Resource Room (meeting room) wasnt showing Subject, it was showing the users name in place of Subject.. as i was banging my head from yesterday... I found the following...

    The Command is 101% correct... and it works fine... but the issue i faced was, ONLY New meeting request will show the Subject correctly, those previous meeting request will NOT show the Subject...

    Hopefully it will be beneficial for anyone who visit this Page..

    Thank you for a great post...

    Reply
    • Rayan says

      December 14, 2018 at 9:19 am

      Thanks for that, do you find anything to change also for previous meetings ?

      Reply
      • Diane Poremsky says

        December 15, 2018 at 12:01 am

        If it doesn't remove the names from existing meetings, they would need to be edited. (It's been awhile since i did it on the calendars here.)

  2. Bill Maniscalco says

    December 8, 2016 at 8:59 am

    How do I manage/change the organizer name Outlook 2016 uses when I send a new meeting invite? I can't seem to locate this option. I have changed my name to "Bill" in the Outlook "general" options page, but it is using "William" when I send out new meeting invites. Thanks!

    Reply
    • Diane Poremsky says

      March 3, 2017 at 10:55 pm

      The organizer name is the same name used on email - if it's pop3/imap, you can change it in account settings. if its exchange, it is picked up from the server. You need to change the accoun on te server to change it in outlook.

      Reply
  3. ClintonA says

    July 13, 2016 at 8:56 am

    Good day Diane, Great blog. Quick question, which is similar to kelemvor33, but mine is a little different. I need to delete the subject and only add the organizer to all previous meetings. We use DeleteSubject $true and AddOrganizerToSubject $true. Not sure what the macro would look like to accomplish that on the resource mailbox.
    Any help would be greatly appreciated.

    Reply
  4. Steve says

    February 9, 2016 at 2:03 pm

    I've got a handful of Resource Room mailboxes in Exchange Online (Exchange 2016) - all show the AddOrganizerToSubject = True.

    It seems that sometimes the organizer's name is applied to the Subject, but often it is not.

    Any ideas as to what may cause that?

    Reply
  5. hemantunique says

    June 1, 2015 at 2:02 am

    Hay Diane,
    Thank for this blog.
    I have one question. I have made the DeleteSubject and AddOrganizerToSubject to False.
    Now the Room mailbox can show me Subject and the Room Mailbox name if I move the pointer to the perticular scheduled meeting. I can not see the organizer name here. If I double click and open the meeting from the Room mailbox calender then I can see the organizer, Subject and Location information. Can we do something so that we can see the Organizer Name and Subject when we move the pointer on the meeting object.
    Otherwise we need to open each meeting object to see its organizer information.

    Thank you.

    Reply
    • Diane Poremsky says

      July 30, 2015 at 12:05 am

      No, you can't customize the popup to show the organizer (if it's not showing it).

      Reply
  6. kelemvor33 says

    April 10, 2015 at 10:05 am

    Any way to have this go back and update all the appointments already in the calendars or is this only for future events that get created?

    Reply
    • Diane Poremsky says

      April 10, 2015 at 2:24 pm

      This will only apply to new meetings. You could use a macro to remove the organizers name.
      The macro on this page be the basis for it: https://www.slipstick.com/developer/code-samples/working-items-folder-selected-items/
      Get the length of the organizers name and trim it from the subject.

      Reply
  7. Stephen says

    February 9, 2015 at 1:38 pm

    I have a question as well- in an Exchange 2010 Environment, is it possible to go back and update the meetings that are already scheduled? I changed all the settings in the EMC, but noticed existing meetings didn't change. Will the cmdlet update existing meetings properly?

    Reply
    • Diane Poremsky says

      February 9, 2015 at 3:35 pm

      I don't think they will be updated but haven't tested it. The name is added (or not added) to the subject as it's added to the calendar and changing the settings will apply to new meeting. (But I could be wrong as I haven't tested it.)

      Reply
  8. Marcos Rodas says

    January 27, 2015 at 3:05 pm

    I was wondering if there is a way to change the end time in the all day event calendar to 11:59 PM? The issue is that whenever we use the all day event the calendar appointments show ending the following day.

    Reply
    • Diane Poremsky says

      January 27, 2015 at 11:11 pm

      You could use a macro but if the problem is that the event is on a shared calendar and the person who created it in a different time zone, it's more difficult to fix. Syncing with smartphone can also cause all day events to span two days.

      However if you only see the date in the list view, it's normal - in the calendar view, it should be on one day but outlook lists the end date as midnight the next day if you use list view.

      Reply
  9. DGS says

    June 13, 2014 at 8:10 am

    Hi Diane,
    I'm experiencing the same problem.
    I want to delete the subject and put the organizer in the subject.
    I've done this before without issues, but it's not working.

    AutomateProcessing : AutoUpdate
    AllowConflicts : False
    BookingWindowInDays : 365
    MaximumDurationInMinutes : 0
    AllowRecurringMeetings : True
    EnforceSchedulingHorizon : True
    ScheduleOnlyDuringWorkHours : False
    ConflictPercentageAllowed : 0
    MaximumConflictInstances : 0
    ForwardRequestsToDelegates : True
    DeleteAttachments : True
    DeleteComments : False
    RemovePrivateProperty : True
    DeleteSubject : True
    AddOrganizerToSubject : True
    DeleteNonCalendarItems : True
    TentativePendingApproval : True
    EnableResponseDetails : True
    OrganizerInfo : True
    ResourceDelegates : delegatename
    RequestOutOfPolicy : {}
    AllRequestOutOfPolicy : False
    BookInPolicy : {}
    AllBookInPolicy : True
    RequestInPolicy : {}
    AllRequestInPolicy : False
    AddAdditionalResponse : False
    AdditionalResponse :
    RemoveOldMeetingMessages : True
    AddNewRequestsTentatively : True
    ProcessExternalMeetingMessages : False
    RemoveForwardedMeetingNotifications : False
    MailboxOwnerId : -----
    Identity : -----
    IsValid : True
    ObjectState : Changed

    Reply
  10. Rodrigo says

    May 15, 2014 at 5:04 pm

    Hi Mrs. Poremsky,

    I set parameters deletesubject for true and deletecomments for true with cmdlet Set-CalendarProcessing.

    But i keep seeing the comments and the subject in room calendar.

    Can you help me?

    Tks

    Reply
    • Diane Poremsky says

      May 23, 2014 at 9:53 pm

      which version of exchange? if you use get-calendarprocessing, does it show the values were set?

      Reply
  11. C Lisson says

    February 10, 2014 at 9:52 am

    Hi Mrs. Poremsky,

    your blog saved my day (like so often)

    Reply
  12. Rick says

    January 23, 2014 at 9:20 am

    Is there any way to add the Organizer's name at the End of the Subject, vs. the Front? It seems that the Subject would be the more valuable field to see first, especially when looking at a month view for quick reference. The Organizer is good for distinguishing the main contact for the meeting, but secondary to the Subject / Title of the meeting.

    Reply
    • Diane Poremsky says

      January 25, 2014 at 1:30 am

      No, you can't control where exchange puts it, only remove it.

      Reply
  13. JM says

    August 28, 2013 at 7:33 am

    Thank you for this article as this helped us fix the issue. I would like to make the comment that in your statement for the Exchange 2010/2013 environment you need to put $false for -AddOrganizerToSubject and -DeleteSubject. Your statement has $true.

    Reply
    • Diane Poremsky says

      August 28, 2013 at 8:15 am

      Thanks. Yeah, it depends if you want to add it or delete it. :) I'll fix it so it's clear.

      Reply
  14. Royal says

    July 17, 2013 at 1:54 pm

    We are so glad we found this today, as it was the exact resolution we needed for a group of users.

    I do have a secondary question related to this; What if this is the result for just a single user in an Exchange 2007 environment? All of the resources are now saving their appointments correctly, unless this user books. If he books a space, the subject changes to his name no matter which space it is.

    Reply
    • Diane Poremsky says

      July 17, 2013 at 7:23 pm

      It sounds like a permissions/policy issue. Use this cmdlet to see what setting the user has, where alias = the problem user's alias or email address
      Get-CalendarProcessing -Identity alias | Format-List

      Reply
      • Royal says

        July 18, 2013 at 10:10 am

        Unfortunately that cmdlet doesn't function in our environment. I tried using the get-mailboxcalendarsettings instead, but there was nothing in there that should be affecting how his bookings appear in the resource calendars. I appreciate the response, it's refreshing to actually see one.

  15. Sophie says

    July 9, 2013 at 8:58 am

    We have made these changes but the subject is still being replaced by the Organizers name. Please help
    Thanks

    Reply
    • Diane Poremsky says

      July 9, 2013 at 9:52 pm

      What version of Exchange server are you using?

      Reply
  16. Anima says

    December 12, 2012 at 3:35 pm

    Hi Poremsky,

    Please tell me the same command for 2010 server, since we are having mailboxes in 2010 exchange server. Please reply soon.

    Its very urgent.

    Reply
    • Diane Poremsky says

      December 12, 2012 at 3:38 pm

      In 2010 you need to use Set-CalendarProcessing - https://technet.microsoft.com/en-us/library/dd335046.aspx

      Reply
  17. Mike H says

    August 7, 2012 at 9:48 am

    Hi Ms Poremsky,

    Thanks for your original post above. We just migrated from our old physical exchange 2007 server to a new virtual Exchange 2007 server & I've had reports of this behavior from several admins on different rooms. Is there a way to set all resources to not delete the subject & not add the organizer to the subject line?

    I have the same question about booking window in days; I want to make a global change there as well & was hoping to not have to do every resource, one at a time!

    Thanks in advance for the help!

    Mike

    Reply
  18. Lhe O. says

    July 27, 2012 at 2:17 am

    Hi Ms Poremsky,

    I'll be needing some help for my question in Outlook Meeting request that works for Outlook 2007.

    Is it possible that the meeting organizer status will be displayed as always free and the required attendee should be booked as out of office?

    I have an excel to aut0matically send a meeting request and what I wanted to do is when I send the invite to the recipient their status should be booked as out of office and mine as organizer will always displayed as Free or Busy status.

    I don't know hot to add VBA code on the ".organizer" to set the status as free or busy.

    Reply
  19. Clay Rembert says

    March 2, 2012 at 8:50 am

    Hi Ms Poremsky

    Your information and tips are great! Unfortunately, there is a topic that I could not locate. That issue deals with items that the RECIPIENT (using OL2010) has access to. When a recipient opens the meeting request and sees the proposed time slot etc on the calendar, what other items from the SENDER'S (also using OL2010) calendar is the RECIPIENT privy to??

    When I viewed my sent items folder, the view implied the recipient had the option to scroll through the sent calendar, thus viewing events from a variety of time slots... I am just a bit confused. Mega thanks in advance!

    Clay

    Reply
    • Diane Poremsky says

      March 2, 2012 at 7:30 pm

      That is just an optical illusion. :) They can only see your free/busy, assuming they have rights to it. Others on your exchange server may be able to see free/busy but most people on other domains will not be able to see it.

      Reply

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

Visit Slipstick Forums.
What's New at Slipstick.com

Latest EMO: Vol. 31 Issue 7

Subscribe to Exchange Messaging Outlook






Support Services

Do you need help setting up Outlook, moving your email to a new computer, migrating or configuring Office 365, or just need some one-on-one assistance?

Our Sponsors

CompanionLink
ReliefJet
  • Popular
  • Latest
  • Week Month All
  • Use Classic Outlook, not New Outlook
  • How to Remove the Primary Account from Outlook
  • Reset the New Outlook Profile
  • Disable "Always ask before opening" Dialog
  • This operation has been cancelled due to restrictions
  • Change Outlook's Programmatic Access Options
  • How to Hide or Delete Outlook's Default Folders
  • Use Public Folders In new Outlook
  • Removing Suggested Accounts in New Outlook
  • How to Delete Stuck Read Receipts
  • Sync Issues and Errors with Gmail and Yahoo accounts
  • Error Opening iCloud Appointments in Classic Outlook
  • Opt out of Microsoft 365 Companion Apps
  • Mail Templates in Outlook for Windows (and Web)
  • Urban legend: Microsoft Deletes Old Outlook.com Messages
  • Buttons in the New Message Notifications
  • Move Deleted Items to Another Folder Automatically
  • Open Outlook Templates using PowerShell
  • Count and List Folders in Classic Outlook
  • Google Workspace and Outlook with POP Mail
Ajax spinner

Recent Bugs List

Microsoft keeps a running list of issues affecting recently released updates at Fixes or workarounds for recent issues in classic Outlook (Windows).

For new Outlook for Windows: Fixes or workarounds for recent issues in new Outlook for Windows .

Outlook for Mac Recent issues: Fixes or workarounds for recent issues in Outlook for Mac

Outlook.com Recent issues: Fixes or workarounds for recent issues on Outlook.com

Office Update History

Update history for supported Office versions is at Update history for Office

Outlook Suggestions and Feedback

Outlook Feedback covers Outlook as an email client, including Outlook Android, iOS, Mac, and Windows clients, as well as the browser extension (PWA) and Outlook on the web.

Outlook (new) Feedback. Use this for feedback and suggestions for Outlook (new).

Use Outlook.com Feedback for suggestions or feedback about Outlook.com accounts.

Other Microsoft 365 applications and services




New Outlook Articles

Sync Issues and Errors with Gmail and Yahoo accounts

Error Opening iCloud Appointments in Classic Outlook

Opt out of Microsoft 365 Companion Apps

Mail Templates in Outlook for Windows (and Web)

Urban legend: Microsoft Deletes Old Outlook.com Messages

Buttons in the New Message Notifications

Move Deleted Items to Another Folder Automatically

Open Outlook Templates using PowerShell

Count and List Folders in Classic Outlook

Google Workspace and Outlook with POP Mail

Newest Code Samples

Open Outlook Templates using PowerShell

Count and List Folders in Classic Outlook

Insert Word Document into Email using VBA

Warn Before Deleting a Contact

Use PowerShell to Delete Attachments

Remove RE:, FWD:, and Other Prefixes from Subject Line

Change the Mailing Address Using PowerShell

Categorize @Mentioned Messages

Send an Email When You Open Outlook

Delete Old Calendar Events using VBA

Repair PST

Convert an OST to PST

Repair damaged PST file

Repair large PST File

Remove password from PST

Merge Two Data Files

Sync & Share Outlook Data

  • Share Calendar & Contacts
  • Synchronize two computers
  • Sync Calendar and Contacts Using Outlook.com
  • Sync Outlook & Android Devices
  • Sync Google Calendar with Outlook
  • Access Folders in Other Users Mailboxes

Diane Poremsky [Outlook MVP]

Make a donation

Mail Tools

Sending and Retrieval Tools

Mass Mail Tools

Compose Tools

Duplicate Remover Tools

Mail Tools for Outlook

Online Services

Calendar Tools

Schedule Management

Calendar Printing Tools

Calendar Reminder Tools

Calendar Dates & Data

Time and Billing Tools

Meeting Productivity Tools

Duplicate Remover Tools

Productivity

Productivity Tools

Automatic Message Processing Tools

Special Function Automatic Processing Tools

Housekeeping and Message Management

Task Tools

Project and Business Management Tools

Choosing the Folder to Save a Sent Message In

Run Rules on messages after reading

Help & Suggestions

Submit Outlook Feature Requests

Slipstick Support Services

Buy Microsoft 365 Office Software and Services

Visit Slipstick Forums.

What's New at Slipstick.com

Home | Outlook User | Exchange Administrator | Office 365 | Outlook.com | Outlook Developer
Outlook for Mac | Common Problems | Utilities & Addins | Tutorials
Outlook & iCloud Issues | Outlook Apps
EMO Archives | About Slipstick | Slipstick Forums
Submit New or Updated Outlook and Exchange Server Utilities

Send comments using our Feedback page
Copyright © 2026 Slipstick Systems. All rights reserved.
Slipstick Systems is not affiliated with Microsoft Corporation.