Jump to content

Open outlook calendar by name


 Share

Recommended Posts

I want to open an outlook calendar so I can export some of the dates from it, currenlty I open outlook and go to the calendar by doing:

Run ("C:\Program Files (x86)\Microsoft Office\Office12\Outlook.exe /select outlook:calendar")

The problem is my outlook as more then one calendar - running the above does not open the calendar I wish to.

Is there a way I can pass the name of the calendar I want to the above line of code?

Link to comment
Share on other sites

Is the other calendar under a different container or does it have a different name? You might try "mystuff:calendar" for a different container, or "outlook:MyCalendar" if it's under the default folder with a different name.

;)

Valuater's AutoIt 1-2-3, Class... Is now in Session!For those who want somebody to write the script for them: RentACoder"Any technology distinguishable from magic is insufficiently advanced." -- Geek's corollary to Clarke's law
Link to comment
Share on other sites

Is the other calendar under a different container or does it have a different name? You might try "mystuff:calendar" for a different container, or "outlook:MyCalendar" if it's under the default folder with a different name.

;)

There is a very good Outlook UDF that might offer the function you need or give you at least an idea how to do it yourself.

I successfully open the calender of another user using the COM interface.

My UDFs and Tutorials:

Spoiler

UDFs:
Active Directory (NEW 2022-02-19 - Version 1.6.1.0) - Download - General Help & Support - Example Scripts - Wiki
ExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example Scripts
OutlookEX (2021-11-16 - Version 1.7.0.0) - Download - General Help & Support - Example Scripts - Wiki
OutlookEX_GUI (2021-04-13 - Version 1.4.0.0) - Download
Outlook Tools (2019-07-22 - Version 0.6.0.0) - Download - General Help & Support - Wiki
PowerPoint (2021-08-31 - Version 1.5.0.0) - Download - General Help & Support - Example Scripts - Wiki
Task Scheduler (NEW 2022-07-28 - Version 1.6.0.1) - Download - General Help & Support - Wiki

Standard UDFs:
Excel - Example Scripts - Wiki
Word - Wiki

Tutorials:
ADO - Wiki
WebDriver - Wiki

 

Link to comment
Share on other sites

I use the following code to access the calendars of other users (Outlook 2002):

$sTemp = "user for which you want to access the calender"
$oApp = ObjCreate("Outlook.Application")
$oNS = $oApp.GetNamespace("MAPI")
$oDummy = $oApp.CreateItem($olMailItem) ; Create dummy mail for name resolution
$oRecip = $oDummy.Recipients.Add("=" & $sTemp) ; "=" stands for exact name resolution
$oRecip.Resolve
If $oRecip.Resolved Then
 $oFolder = $oNS.GetSharedDefaultFolder($oRecip, $olFolderCalendar)
 If IsObj($oFolder) Then
    ... access the calendar ...
 EndIf
Endif

My UDFs and Tutorials:

Spoiler

UDFs:
Active Directory (NEW 2022-02-19 - Version 1.6.1.0) - Download - General Help & Support - Example Scripts - Wiki
ExcelChart (2017-07-21 - Version 0.4.0.1) - Download - General Help & Support - Example Scripts
OutlookEX (2021-11-16 - Version 1.7.0.0) - Download - General Help & Support - Example Scripts - Wiki
OutlookEX_GUI (2021-04-13 - Version 1.4.0.0) - Download
Outlook Tools (2019-07-22 - Version 0.6.0.0) - Download - General Help & Support - Wiki
PowerPoint (2021-08-31 - Version 1.5.0.0) - Download - General Help & Support - Example Scripts - Wiki
Task Scheduler (NEW 2022-07-28 - Version 1.6.0.1) - Download - General Help & Support - Wiki

Standard UDFs:
Excel - Example Scripts - Wiki
Word - Wiki

Tutorials:
ADO - Wiki
WebDriver - Wiki

 

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...