Pure gold!
Sean Rector, MCSE From: Michael B. Smith [mailto:[email protected]] Sent: Thursday, February 17, 2011 11:11 AM To: MS-Exchange Admin Issues Subject: RE: Send of behalf of problem I use this specifically for room configurations, but it applies to user mailboxes just as well. Use the referenced cmdlets to adjust the parameters you want. -----Set-Room.ps1----- Param( [string]$room ) Set-MailboxCalendarSettings -Identity $room ` -AutomateProcessing AutoAccept ` -AllowConflicts $False ` -BookingWindowInDays 180 ` -MaximumDurationInMinutes 1440 ` -AllowRecurringMeetings $True ` -EnforceSchedulingHorizon $True ` -ScheduleOnlyDuringWorkHours $False ` -ConflictPercentageAllowed 0 ` -MaximumConflictInstances 0 ` -ForwardRequestsToDelegates $True ` -DeleteAttachments $True ` -DeleteComments $True ` -RemovePrivateProperty $True ` -DeleteSubject $True ` -DisableReminders $True ` -AddOrganizerToSubject $True ` -DeleteNonCalendarItems $True ` -TentativePendingApproval $False ` -EnableResponseDetails $True ` -OrganizerInfo $True ` -ResourceDelegates ("test.user1", "test.user2") ` -AllRequestOutOfPolicy $False ` -BookInPolicy ("test.user1", "test.user2") ` -AllBookInPolicy $False ` -AllRequestInPolicy $True ` -AddAdditionalResponse $True ` -AdditionalResponse "This meeting is only tentative until confirmed." ` -RemoveOldMeetingMessages $True ` -AddNewRequestsTentatively $True ` -ProcessExternalMeetingMessages $True ` -DefaultReminderTime 15 ` -RemoveForwardedMeetingNotifications $False Get-MailboxCalendarSettings $room | fl -----Set-Room.ps1----- Regards, Michael B. Smith Consultant and Exchange MVP http://TheEssentialExchange.com From: Jeff Jackson [mailto:[email protected]] Sent: Wednesday, February 16, 2011 2:57 PM To: MS-Exchange Admin Issues Subject: Send of behalf of problem With Exchange 2010 and Outlook 2010, I've got a problem with sending out meeting invitations. Say a user sends out a meeting request on behalf of their boss. All of the accept and decline responses are going to the boss, but we want them to go to the person who did the send on behalf of. Any ideas on how to make that happen? I'm not even sure which is the culprit, Outlook or Exchange? Jeff Jeff Jackson R.B. Zack & Associates, Inc. www.rbza.com <http://www.rbza.com/> Celebrating 30 Years of Service! Building Business Applications that Work Since 1981. [email protected] (310) 303-3320 x180 All science is either physics or stamp collecting. --Ernest Rutherford The information in this e-mail is confidential and may be legally privileged. It is intended solely for the addressee. Access to this e-mail by anyone else is unauthorized. If you are not the intended recipient, any disclosure, copying, distribution or any action taken or omitted to be taken in reliance on it, is prohibited and may be unlawful. --- To manage subscriptions click here: http://lyris.sunbelt-software.com/read/my_forums/ or send an email to [email protected] with the body: unsubscribe exchangelist --- To manage subscriptions click here: http://lyris.sunbelt-software.com/read/my_forums/ or send an email to [email protected] with the body: unsubscribe exchangelist Information Technology Manager Virginia Opera Association E-Mail: [email protected] Phone: (757) 213-4548 (direct line) {+} Subscriptions and tickets are on sale now!? The Valkyrie?? |?? Madama Butterfly Visit us online at www.VaOpera.org or call 1-866-OPERA-VA The vision of Virginia Opera is to enrich lives through the powerful integration of music, voice and human drama. This e-mail and any attached files are confidential and intended solely for the intended recipient(s). Unless otherwise specified, persons unnamed as recipients may not read, distribute, copy or alter this e-mail. Any views or opinions expressed in this e-mail belong to the author and may not necessarily represent those of Virginia Opera. Although precautions have been taken to ensure no viruses are present, Virginia Opera cannot accept responsibility for any loss or damage that may arise from the use of this e-mail or attachments. {*} --- To manage subscriptions click here: http://lyris.sunbelt-software.com/read/my_forums/ or send an email to [email protected] with the body: unsubscribe exchangelist
