Set calendar invites 300 per mail box in exchange server 2019 using script

Kanav Sharma 25 Reputation points
2023-06-15T00:10:41.26+00:00

Hi Team. I want to Set calendar invites, 300 per mailbox in exchange server 2019 by using script only. I think we can do this by using a Powershell script, or is there any other way to do this using script only? Please help me out as soon as possible…If possible then please help to provide the script!!!

Thanks!

Exchange | Exchange Server | Other
Exchange | Exchange Server | Development
Exchange | Exchange Server | Management
Windows for business | Windows Server | User experience | PowerShell
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. Limitless Technology 44,776 Reputation points
    2023-06-15T10:45:53.6366667+00:00

    Hello there,

    Use the Set-MailboxCalendarConfiguration cmdlet to modify mailbox calendar settings for Outlook on the web. This affects how the user's calendar looks and how reminders work in Outlook on the web.

    $ol = New-Object -ComObject Outlook.Application

    $meeting = $ol.CreateItem('olAppointmentItem')

    $meeting.Subject = 'Test # 4'

    $meeting.Body = 'Let''s have a meeting'

    $meeting.Location = 'Virtual'

    $meeting.ReminderSet = $true

    $meeting.Importance = 1

    $meeting.MeetingStatus = [Microsoft.Office.Interop.Outlook.OlMeetingStatus]::olMeeting

    $meeting.Recipients.Add('******@contoso.net')

    $meeting.Recipients.Add('******@contoso.net')

    $meeting.ReminderMinutesBeforeStart = 15

    $meeting.Start = [datetime]::Today.Adddays(1)

    $meeting.Duration = 30

    $meeting.Send()

    Hope this resolves your Query !!

    --If the reply is helpful, please Upvote and Accept it as an answer--

    0 comments No comments

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.