Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- $outlook = new-object -com Outlook.Application
- $calendar = $outlook.Session.GetDefaultFolder(9) # == olFolderCalendar
- $appt = $calendar.Items.Add(1) # == olAppointmentItem
- $appt.Start = [datetime]$AppointmentTime
- $appt.Subject = $subject
- $appt.Location = $location
- $appt.ReminderSet = $true
- $appt.ReminderMinutesBeforeStart =$ReminderMinutesBeforeStart
- $appt.RTFBody = [System.IO.File]::ReadAllBytes('c:\rtfbody.rtf')
- $appt.Save()
- $outlook.Quit()
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement