Last week at the start of our quest to make Microsoft Outlook do what we want – that is, launch an application when an appointment or task item reminder occurs – we first had to stop Outlook from having a cow every time we started it with macros (aka scripts) installed. Thus we went down the labyrinthine path to create self-signed certificates that let Outlook turn a blind eye to our code.It appears that some of you have benefited from our expiation of this particular bit of Microsoft arcana. Reader Bruce Whitlock wrote: “The column on Outlook was timely, encompassing and, most important to me, accurate.” We aim to please.This week we’ll show you how to launch an application from an Outlook reminder.First, in the Outlook menu go to Tools | Macro | Visual Basic Editor, or simply press Alt + F11 and you will find yourself in the VBA Editor. In the left pane you will see a hierarchy starting with Project1 (VbaProject.OTM), under which you will see (when you expand the branches) Microsoft Office Outlook Objects and under that ThisOutlookSession. The right pane now will list the various subroutines and functions you have defined by loading macros and extensions under Outlook. Put the following code in that pane: Private Sub Application_Reminder(ByVal Item As Object)If (TypeOf Item Is AppointmentItem) And _ (Item.Categories = “AppRun”) Then _Call RunApp(Item)End SubPublic Function RunApp(ByVal Item As AppointmentItem)Dim WSHShellItem.ReminderSet = False Item.Close (False) ‘close reminder popupSet WSHShell = CreateObject(“wscript.Shell”)WSHShell.Run Trim(Item.Body), 1, FalseSet WSHShell = Nothing End FunctionThe first line sets up an event handler for Outlook reminders. When a task or an appointment triggers a reminder, the handler subroutine named Application_Reminder will be called.The calling routine – Outlook itself – will pass the handler an object so we first must test the object to see if it is an AppointmentItem. The alternatives are MailItem, MeetingItem or TaskItem, and we could choose to launch applications from any of these. TaskItems would be a sensible alternative as well as or instead of AppointmentItems.Once we know the object is an AppointmentItem we can test its Categories attribute value to see if that equals AppRun (you could look for any category or categories you like – nothing restricts you to just one). If the value is what we’re looking for, we now call the function RunApp.RunApp first clears the ReminderSet property of the item and then executes the close method, which updates the object’s properties. This should suppress the reminder alert dialog if you have enabled it, but the dialog seems to get called anyway (although the reminder we just cancelled does not appear). This is very annoying. If you know how to prevent this, please let us know.Next we call the Windows Script Host to access a native Windows shell. This shell lets us run a program locally, manipulate the contents of the registry, create a shortcut or access a system folder. We are going to run a program.The trim function strips leading and trailing spaces from the string that we extract from the object’s “body” – that’s the optional descriptive text, which is another property of the object. We then pass this string to the shell instructing the shell to execute it. The next argument, “1,” specifies that the window should be activated and displayed (if the window is minimized or maximized, the system restores it to its original size and position). The final argument, “False,” causes control to immediately return to our script ignoring any error code from the shell (in other words, if the program doesn’t exist or something else goes wrong our script doesn’t care).When the reminder actually occurs will depend on how far in advance of the event we set it. But don’t assume that the application will be launched exactly on the minute that you specify – on our test system the reminder usually triggered about 40 seconds after the target time was reached – an odd behavior that is because of the internal architecture of Outlook.If you need accurate launching of an application you might want to ensure that the reminder occurs a few minutes before the desired start time and hand the details of the program to be executed to an external application along with the start date and time (which would be referenced in our example as Item.Start).Is that it? Nope. There’s more next week. Remind us at gearhead@gibbs.com. Related content how-to Doing tricks on the Linux command line Linux tricks can make even the more complicated Linux commands easier, more fun and more rewarding. By Sandra Henry-Stocker Dec 08, 2023 5 mins Linux news TSMC bets on AI chips for revival of growth in semiconductor demand Executives at the chip manufacturer are still optimistic about the revenue potential of AI, as Nvidia and its partners say new GPUs have a lead time of up to 52 weeks. By Sam Reynolds Dec 08, 2023 3 mins CPUs and Processors Technology Industry news End of road for VMware’s end-user computing and security units: Broadcom Broadcom is refocusing VMWare on creating private and hybrid cloud environments for large enterprises and divesting its non-core assets. By Sam Reynolds Dec 08, 2023 3 mins Mergers and Acquisitions news analysis IBM cloud service aims to deliver secure, multicloud connectivity IBM Hybrid Cloud Mesh is a multicloud networking service that includes IT discovery, security, monitoring and traffic-engineering capabilities. By Michael Cooney Dec 07, 2023 3 mins Network Security Cloud Computing Networking Podcasts Videos Resources Events NEWSLETTERS Newsletter Promo Module Test Description for newsletter promo module. Please enter a valid email address Subscribe