I need this resolved asap. As a Microsoft Server & Messaging Consultant I look fairly foolish not being able to get my live.com emails.
Thank you,
Mark F Barr
I have created an hotmail account a few years ago in Thai. I set the language to English. I get on my iPad notifications (calendar events) in my inbox in Thai. Where can I change the language.
Thanks in advance for your answer.
set newEvent to make new calendar event with properties {all day flag:true, subject:myEvent, location:myLocation, start time:startTime, end time:endTime}
(*
Create Event from Message
Copyright (c) Microsoft Corporation. All rights reserved.
*)
tell application "Microsoft Outlook"
-- set the folder name which we will move the email to after
set DestFolderName to "2-Defer"
-- get the currently selected message or messages
set selectedMessages to current messages
-- if there are no messages selected, warn the user and then quit
if selectedMessages is {} then
display dialog "Please select a message first and then run this
script." with icon 1
return
end if
repeat with theMessage in selectedMessages
set category of theMessage to {category "@defer"}
-- get the information from the message, and store it in variables
set theName to subject of theMessage
set theCategory to category of theMessage
set theContent to content of theMessage
set theDate to current date
set time of theDate to (9 * 60 * 60)
set nextWeekStart to theDate + (24 * 60 * 60 * 7)
-- create a new note with the information from the message
set newEvent to make new calendar event with properties {subject:theName, category:theCategory,content:theContent, all day flag:true, has reminder:true, reminder time:5, free busy status:free, start time:nextWeekStart, end time:nextWeekStart, is private:true}
-- move the message to the defer folder
set theAccount to account of theMessage
set theFolder to folder DestFolderName of folder "Inbox" of theAccount
move theMessage to theFolder
end repeat
-- if there was only one message selected, then open that new note
if (count of selectedMessages) = 1 then open newEvent
end tell
Upon restarting, all my calendar events were gone, except for one event. Meanwhile, all my contacts and email appear to be intact.
I have my Outlook data backed up with duplicate of my identity, but that backup was from three weeks ago.
Is there a way to merge the newer emails and contacts that are still on my non-backup identity with the backed up identity, with the intent to not lose any of the data created between now and my last backup?
I also have Outlook 2011 syncing with iCal in order to sync with my iPhone.
Thanks in advance,
catfell
Thanks,
Darren
Recent Comments