Почему я не могу установить часовую зону для заказа на бронирование?Добавление startTimeZone и endTimeZone
try
{
$Appointment = New-Object Microsoft.Exchange.WebServices.Data.Appointment($service);
$Appointment.Subject=$CalendarItem."Subject";
$Appointment.Start=$calendarItem."StartDateTime";
$Appointment.End=$calendarItem."EndDateTime";
$Appointment.Resources.Add($CalendarItem."Resources");
$Appointment.StartTimeZone="Tokyo Standard Time";
}
catch
{
# If we fail to set any of the required fields, we will not write the appointment
$NoError=$false;
}
Привет, спасибо, что ответ. Я все еще не могу добавить к назначению. Im использует O365. – Jay
Предполагаю, что вы сохраняете назначение? '$ Назначение.Save()' – TechSpud
да. если ошибок нет, эта команда будет выполнена. $ Appointment.Save ([Microsoft.Exchange.WebServices.Data.WellKnownFolderName] :: Календарь); – Jay