Set objOutlook = CreateObject("Outlook.Application") objOutlook.GetNamespace("MAPI").Folders.GetFirst.GetExplorer.CommandBars.FindControl(, 5613).Execute Set objOutlook = Nothing
Computer, Technology, Databases, Google, Internet, Mobile, Linux, Microsoft, Open Source, Security, Social Media, Web Development, Business, Finance
Thursday, October 29, 2009
How to set "Work Offline" for Outlook programatically
The show VBScript code snipppet will toggle between working "Offline" and "Online" for MS Outlook.
Subscribe to:
Post Comments (Atom)
Popular Posts
-
According to a report in TodayOnline , Temasek-linked firms may post lower dividends this year. Even billionaire Warren Buffett's Berksh...
-
Singapore’s Land Transport Authority has just released an updated official MRT map including one additional station on the North East Line (...
-
*********** Try to sleep now, close your eyes Soon the birds would stop singing Twinkling stars, are shining bright They'll be watch...
-
Robocopy, short for "Robust File Copy" is an advanced command-line utility included in Windows. It's designed to copy files an...
-
I would like to apologize that sigining of my guestbook is not possible at the moment due to an unexpected bug. There is already 74 entries ...
My goal was to be able to create a special Outlook Rule that evaluated the subject line of a message, and if it met my criteria would take Outlook offline. I use this when I'm away from my office and forget to take outlook offline, so that it is not picking up my messages from the server while I'm out, leaving them unread on the server for use on my mobile devices.
ReplyDeleteI found your script while searching for VBS to take outlook offline, and it worked great, except that it would open a new window when executed.
For others wishing to do this... After a bit more investigation and code hacking, this solution worked for me, taking OL offline using the active window. Immediately upon receipt it takes outlook offline, and you may receive a benign error in the status bar saying that the send/receive was interrupted (because, essentially it was, by the script):
Dim oOL
Set oOL = GetObject(, "Outlook.Application")
If Not (oOL Is Nothing) Then
Set objCBs = oOl.Application.ActiveExplorer.CommandBars
objCBs.FindControl(, 5613).Execute
End If
Set oOL = Nothing