Blog Archives

Pin Outlook Templates to the Taskbar for Quick Access [Outlook Tip]

Reader Stephen writes in with an excellent, time-saving Windows 7 tip: you can create Outlook templates for boilerplate emails and pin them to the Windows taskbar for easy access.

This technique is not limited to readers using Windows 7, since you can pin a folder to the taskbar in any version of Windows—but the new Jump lists in Windows 7 make it a lot simpler. To create your own set of Outlook templates, Stephen advises:

  1. Create an Outlook template by composing a new email message with the text you want, and then using File -> Save As to save the message as an Outlook Template into a folder of your choice.
  2. If you are using Windows 7, simply drag the template files onto the Outlook icon.
  3. For previous versions of Windows, right-click the taskbar, choose Toolbars -> New Toolbar, and pick the folder that you saved the templates into.
  4. Now you can quickly access your templates from the Jumplist by right-clicking on the Outlook icon. For previous versions of Windows, you can use the pop-up folder menu.

It’s a great tip for anybody that repeatedly sends emails on the exact same topic. Thanks, Stephen!

For more ways to be productive while dealing with email overload, learn how to save time and typing with Outlook 2007′s Quick Parts, tweak Outlook to empty your inbox faster, knock down repetitive email with AutoHotkey, or just take a look through our top ten Outlook boosters.





Use an Outlook Macro to Stop Forgetting the Subject Line [Outlook]

Windows only: Microsoft Outlook is a powerful tool used worldwide by corporate drones—and with a little macro goodness, it will remind you to attach a subject line to your TPS Reports.

Adding the new macro requires a number of steps, but when you are finished you'll have a reminder to add in a subject line—just like Gmail has by default. You'll need to open up the Visual Basic macro editor, find ThisOutlookSession over in the left-hand treeview, and then paste in the macro into the editor.

Private Sub Application_ItemSend(ByVal Item As Object, Cancel As Boolean)
   Dim strSubject As String
   strSubject = Item.Subject
   If Len(Trim(strSubject)) = 0 Then
       Prompt$ = "Subject is Empty. Are you sure you want to send the Mail?"
      If MsgBox(Prompt$, vbYesNo + vbQuestion + _
vbMsgBoxSetForeground, "Check for Subject") = vbNo Then
        Cancel = True
      End If
  End If
End Sub

Once you've saved and closed the macro editor, you should receive a warning anytime you forget the subject line—a very useful trick to avoid sending an unfinished email.

Hit the link for the detailed walk-through screenshot tour. Note: this macro was found on at least half a dozen web sites, so we’re not really sure who the original author is, but the CodeProject link explains the process in the most user-friendly way. For more, check out how to defer sending emails to avoid embarrassment, or take a look through our top 10 Outlook boosters.





Sender’s Time Zone Makes Outlook Better [Downloads]

Windows only: Outlook Add-in Sender’s Time Zone makes easy work of dealing with recipients in multiple time zones—no more calculating times in your head.

Once installed, the add-on puts a small display on each message window with the time zone of the sender, the number of hours behind, as well as the time since the message was sent—it's one of those add-ons that's so useful you aren't sure why they didn't include in the first place.

Sender’s Time Zone is a free download for Windows, requires Microsoft Outlook. Gmail users can get the same functionality by taking advantage of the Gmail Time Zone Notifier Labs option. Thanks, Scott!





TopAlt EnableDisable Makes Office Add-On Management a Snap [Downloads]

Windows: There are a lot of great add-ons for Microsoft’s premier productivity product, but there’s no central spot to turn them on or off. TopAlt EnableDisable controls Microsoft Office add-ons with simple check-boxes.

In a way, that’s all there is to it. Install the program, load it up, and you’ll see all the Office programs you’ve installed with plug-ins active on separate tabs. My freshly-installed Office copy doesn’t have a lot going on in the screenshot, but most any well-used copy will have Access, Excel, Outlook, and Word options to dig through.

EnableDisable shows you what’s being loaded into your programs at startup or on-demand, and offers a description if one’s embedded in the add-on. It catches both third-party plug-ins and Microsoft’s own functionality extenders. The Get More Add-ins link takes you, not surprisingly, to TopAlt.com‘s products, but the program itself does what it promises in a seemingly safe way. TopAlt EnableDisable is a free download for Windows systems only.





SaveAllAttachments Archives and Deletes Outlook File Attachments [Downloads]

Windows only: Microsoft Outlook add-in SaveAllAttachments does just what its name implies; it saves all the attachments from selected messages to a folder of your choosing, optionally deleting them from the message.

Once you've installed SaveAllAttachments and restarted Outlook, you can use the add-in by simply selecting some messages and clicking the button. You'll be prompted for a folder, asked if you want to delete the original attachments, and the files will be swiftly saved into a folder—a very useful solution for quickly reducing the size of your PST file.

SaveAllAttachments is a free download, Windows and Outlook 2007 only. For another solution that lets you search through attachments before saving them, check out previously mentioned OutlookAttachView. While you’re beefing up Outlook, take a look through our top 10 Outlook boosters.





Missing Attachment Powertoy Reminds You to Attach Files [Downloads]

Windows only: The Missing Attachment Powertoy for Microsoft Outlook 2007 reminds you when you forget to attach a file to an email—preventing an embarrassing situation with an important contact.

Once installed, the plug-in scans your new email message for words indicating that you've attached a file—you can change the words that are checked in the Outlook options panel. The detection only happens for the latest message in a conversation, so you won't be constantly reminded when dealing with a long message chain explaining cover sheets on TPS reports.

Missing Attachment Powertoy is a free download, Outlook 2007 on Windows only. For more, check out our top 10 Outlook boosters, or if you want attachment reminders without a plugin, you can use a previously mentioned Outlook macro to do the same thing.





Use Google Reader from Within Outlook [Outlook 2007]

Reader David writes in with a useful tip for consolidating windows—he embeds Google Reader into Outlook as a replacement for the built-in RSS support.

Replacing the current RSS Feeds folder with Google Reader instead is easy—just right-click on the folder, choose Properties, enter the full URL to Google Reader on the Home Page tab, and then check the box for “Show home page by default for this folder”. You can even use the full URL to a specific folder in Google Reader, or create extra folders in Outlook and use a different URL for quick access to different views.


The technique itself is nothing new to most Lifehacker readers—we've previously mentioned how to use Google Calendar from Outlook—but it's a very useful tip if you spend most of your day in Outlook anyway. Thanks, David!

Update: If you are getting javascript errors, you should be able to use the following URL to fix the problem: www.google.com/reader/ (thanks to k3n85 in the comments for clarifying).





Add a Gmail-Like Archive Button to Microsoft Outlook [Ubergeek]

Gmail has popularized archive as an easy way to keep your inbox clean without trashing email, but if you're using Outlook, archive isn't really an option—by default, at least. Here's how to add archive to Outlook.

Whether you follow Inbox Zero or use Gina’s Trusted Trio to keep your inbox clean, one of the most time-consuming and annoying tasks in Outlook is moving your mail to an archive folder—and today we'll show you how to automate it using Outlook's powerful macro support.

All credit for this solution goes to Lifehacker reader jayp, who sent in his own ubergeeky technique that was the basis for this article—well worth a read if you want to see a more advanced version of the script .

For our scenario, we're trying to create a button that moves email messages from the Inbox into an Archive folder like this one—the magic happens behind the scenes with a macro that we'll create.

In order to use macros without being prompted every single time to accept them, you need to create a personal digital certificate using the aptly named Digital Certificate for VBA Projects utility.

Creating a digital certificate couldn't be easier—just type in a name and click the button, closing it out when you are done.

Next we'll create the macro by selecting Tools -> Macro -> Macros from the menu, type in a name for your macro and click the Create button.

Once you’ve launched the Visual Basic editor, you’ll need to paste in the following macro, replacing whatever is currently there. You’ll notice the Folders("Archive") section in the code—this can be modified if you want to use a folder name other than Archive.


Sub Archive()
Set ArchiveFolder = Application.GetNamespace("MAPI"). _
GetDefaultFolder(olFolderInbox).Parent.Folders("Archive")
For Each Msg In ActiveExplorer.Selection
Msg.Move ArchiveFolder
Next Msg
End Sub

Once you've completed that step, go to Tools -> Digital Signature and assign the certificate that you created earlier. This is what will allow Outlook to run our macro without constant warnings. Once you are finished, click the save button and use the File -> Close and Return menu item to return to Outlook.

Next we get to actually add the button to the toolbar—just right-click over the toolbars, choose Customize, and then browse down to Commands -> Macros and drag your macro onto the toolbar.

While you still have the Customize dialog open, you can rename the button or even eliminate the text, and assign a new icon. If you want to create a shortcut key for the button, you can put an ampersand (&) character before any of the letters, which will make the shortcut accessible through the Alt+<key> shortcut key combination.

Now we've got an icon to archive mail—but you'll need to restart Outlook to complete the setup.

After Outlook starts back up, you'll see a security notice dialog asking whether to enable or disable macros—you want to choose "Trust all documents from this publisher" so you won't be prompted again.

At this point you should have a fully working solution for quickly archiving messages, but the same techniques could be used to create more advanced functionality—like a full-blown GTD system—it's just a matter of rolling up your geek sleeves and getting to work.

This solution is what works for me, using Outlook 2007 hooked to Exchange. If you’re having problems, let’s try to figure it out in the comments. Good luck!

If email automation is up your alley, be sure and check our guides to emptying your inbox with the Trusted Trio or separating your email from your to-do’s.





FoxitPDF Preview Handler Loads PDFs in Outlook 2007 [Downloads]

Windows only: If you’re in need of a light-weight PDF previewer for messages in Outlook 2007, you can now plug FoxitPDF, the speedy and free PDF viewer, directly into it.

Tim Heuer, software developer behind the Method of Failed blog, found that loading up Adobe Acrobat to do a quick preview of a PDF in his email was entirely overkill. To speed up his email workflow, he put together a plugin for Outlook 2007 that loads PDF files with FoxitPDF.

The following animation shows the quick preview in action:

The plugin works in both Windows Vista and Windows XP. One minor caution—more of an Outlook issue than a plug-in problem—if you double click on the document you're previewing instead of single clicking it, you'll skip right past the preview and launch the file with whatever application is your system default. If Foxit isn't your default PDF viewer, it will launch Acrobat and defeat the whole purpose of the quick preview. FoxitPDF Preview Handler is freeware, Windows only. Thanks Caleb!

FoxitPDF Preview Handler [Method of Failed]






WP Like Button Plugin by Free WordPress Templates