Welcome to Office Zealot Sign in | Join | Help

Vista Annoyance - Open/Save As Choices For File Downloads

 

Finally - after months of occasional efforts to find a solution (poor searching maybe), and seeing "close but no cigar" workarounds for general file association issues in Vista, I've deduced the answer to a problem that's been bugging me for months.

 

At some point, I was no longer presented with the option to Open or Save a .zip file from a link on a web page.  I really don't like .zip files being directly opened in WinZip, because it will be saved to your %temp% directory and then you have to copy the archive to where you actually want to save it.  Plus, the continuous insertion of [1] after the file name drives me mad, never mind the stupid bug/feature in WinZip that prevents me from moving the archiving and forces me to copy it - leaving junk behind.  But I digress from my rant…

 

The setting that remembers your Open/Save choice is in this key:

 

HKEY_CLASSES_ROOT\WinZip\EditFlags

 

These are the REG_BINARY value:

 

00 00 01 00 = Open

00 00 00 00 = Save As

 

Easy!  The action for other file types can be similarly changed.  With Word 2007 docs for example, look in HKEY_CLASSES_ROOT\Word.Document.12\EditFlags.

 

But remember how much easier this was to change in Windows XP?  <sigh>

Posted by legault | 0 Comments
Filed under:

Changing Outlook's Macro Security Settings

 

If you ever have a need to programmatically change Outlook's macro security settings (or to change it outside of Outlook), you can do so by editing the values of this key in the Windows Registry:

 

HKEY_CURRENT_USER\Software\Microsoft\Office\12.0\Outlook\Security\Level

 

These are the settings in Outlook's Macro Security dialog and the corresponding values:

 

Setting

Value

No warnings and disable all macros

4

Warnings for signed macros; all unsigned macros are disabled

3

Warnings for all macros

2

No security check for macros (Not recommended)

1

 

If you change the value while Outlook is running, the change will be reflected in the dialog but the changes won't be applied until after you restart Outlook.

Posted by legault | 3 Comments
Filed under:

Take SharePoint Content Offline Without the Hassle

As a value added service to customers who have implemented (or will) SharePoint in their organization, I have established a relationship with Colligo Networks, Inc. as an official Colligo for SharePoint Partner.  I am now the sole integrator for Colligo in the Winnipeg and Manitoba regions.

 

As  a developer and integrator, I am speciliazing in solutions utilizing Colligo's flagship software - Colligo Contributor™ Pro.  This is an easy-to-deploy .NET client application that extends the power of SharePoint to the desktop.  It can boost productivity and adoption by enabling users to instantly and securely access, modify and create SharePoint content online and offline.  Contributor Pro includes two user interface options: a rich standalone desktop client and an Outlook Add-in.

 

As you probably know, Outlook 2007 provides support for linking SharePoint Lists and Document Libraries.  But as the following table shows, Contributor offers much more:

 

Requirements

SharePoint

+ Outlook 2007

SharePoint+ Groove 2007

SharePoint

+ Colligo Contributor

Drop content into Document Libraries through Outlook folders

 

 

Yes

Offline cache, 2-way sync of custom lists

 

 

Yes

Offline cache, 2-way sync of Document Libraries

 

Yes

Yes

Apply standard and custom metadata at time of capture

 

 

Yes

Automatically extract email message properties to metadata

 

 

Yes

Contributor could be of great value for your organization - not only for offline access to SharePoint content, but also for:

  • Remote offices where bandwidth is an issue
  • User-based migration of Exchange Public Folders to SharePoint using Outlook
  • Email collaboration or archival in SharePoint, especially for compliance and retention policies and regulations

If you would like to experience the power of Colligo's offline access to SharePoint for yourself, download the free Colligo Reader.  It's a great way to try the rich offline SharePoint experience that Contributor Client delivers.  Reader provides read-only access to SharePoint content offline, including documents, lists and metadata.  It's also very simple to use, and would require virtually no training or support for most end-users.

For more information about my consulting services for SharePoint, please drop me a line.

Posted by legault | 1 Comments
Filed under: , ,

Announcing - Picture Attachments Wizard 2.0

 

The next version of my "flagship" Outlook Add-In, Picture Attachments Wizard 2.0 for Microsoft Outlook®, has officially been released!

 

  • Now includes support for Windows Vista
  • Optimized for Outlook 2007 (all previous Outlook versions 2000 and greater are still supported)
  • New image conversion features
  • Performance enhancements
  • And much, much more!

 

Product Highlights:

 

  • View thumbnails of image attachments - without having to save the attachments to disk!
  • Run a slideshow of attached picture files - without having to save the attachments to disk!
  • Quickly save all attachments to a folder with one click!
  • Easily export every attachment in every message in the current folder.
  • Preview image attachments as you add them to a new e-mail message - don't send the wrong picture again!
  • Convert image attachments to a variety of common image formats, then export them to a file or update the attachments directly in the e-mail
  • View the extended file properties of images that were taken with a digital camera (camera model, date picture taken, exposure time, etc.)
  • Works with all common image files (.bmp, .emf, .gif, .jpg, .png, .tif, .wmf)
  • Choose the viewer application to view individual pictures - don't get stuck with the default application that Windows uses! Choose a tabbed web browser to quickly load all of the pictures, or open them with a powerful image editor to quickly make changes.
  • Save disk space by quickly deleting unnecessary attachments of any kind from the selected messages

 

For more information, see the Picture Attachments Wizard 2.0 web site.

 

Or click here to purchase...

Or download a 45-day trial version...

Posted by legault | 1 Comments
Filed under: ,

Hey Outlook, where's that folder?

I use Xobni and Outlook 2007's Instant Search quite often.  Once I find and open the e-mail that I've retrieved using either mechanism, I almost always want to find and display the folder where that message is stored.  So here's a quick and handy little macro that will do just that:

Sub DisplayFolderContainingOpenItem()
On Error Resume Next

    Dim objFolder As Outlook.MAPIFolder
    Dim objExpl As Outlook.Explorer
   
    'Don't do anything if nothing is open!
    If ActiveInspector Is Nothing Then Exit Sub
   
    Set objFolder = ActiveInspector.CurrentItem.Parent
    objFolder.Display
    Set objExpl = objFolder.GetExplorer
    objExpl.WindowState = olMaximized
   
    Set objExpl = Nothing
    Set objFolder = Nothing
End Sub

Unfortunately there's no way to select the current message in the folder as well - we'll have to wait until the next version of Outlook to see if the Product Team has added such functionality to the object model.  ;-)

ROCK!

Posted by legault | 1 Comments
Filed under:
More Posts Next page »