Showing posts with label microsoft. Show all posts
Showing posts with label microsoft. Show all posts

Wednesday, 15 June 2011

Gmail-type Labels in Outlook 2003

Gmail-type labels are very useful for organising and categorising messages.  This is important for search, especially if your network admin doesn't allow you to install nifty search plugins like Xobni or Lookout

Background:  Why is this relevant?  Because too many people are in the habit of using folders to organise their email in Outlook.  This looks like a good idea on the surface, but somewhere down the road it becomes apparent that Outlook's default search tool only lets you search in one folder.  Sure, you can do an Advanced Find and select multiple folders, but then you will realise that Outlook can only search 1 data file at a time.  E.g. either messages on your main "Inbox" server, or messages in your archive (.pst) folders.... not both together!  By doing away with folder organisation, dumping all messages into a single "archive" folder and applying labels, searching your mail will be a less cumbersome process.

This tutorial will show you how to make gmail-type labels in Outlook and use a one-click tool button to apply said label.  This is accomplished using macros, so make sure you have enabled macros in outlook.

Our "labels" are going to be Outlook's Categories.  To see Categories, right-click on any message and select Categories.  You'll see a list of available Categories such as Business, Personal, etc.  You can either use these, leave them be, or get rid of them.  I chose to delete all default categories and start fresh.  Next, add all the labels you wish to use as new categories using the Master Category List.  The names of your folders might be a good place to start.  In the example below, I have created two labels: OMess and Reference.


You'll notice you can now right click on any message, select Categories and put a check in one (or more) of the boxes.  Apply the appropriate categories to your messages (you can select multiple) and, once done, get rid of all your folders and put your messages in one general folder. 

You can now create search folders to quickly pull up those messages.  They will work the same way as the old Folder system and will eilminate the need to drag each message into its proper folder.  As mentioned before, you will also gain search functionality.  To create a search folder, go to File > New > Search Folder.  Go to the bottom and select Create a custom Search Folder.  You'll then want to name it (choose a label name), click Criteria, tab to More Choices and click the Categories button.  Then select the category/label you desire, and OK all the windows (see "Reference" example below).  You should now have a new Search Folder that pulls up your labelled messages.....just like a folder.



You're already better off now than when we started.

To make things even better, consider adding buttons that will label a message with the click of a mouse.  The macro code is below... see my Archive It post to turn it into one (or more) buttons.

Note that Subs MarkA and MarkB just call the MarkWithCategory function.  You can make as many of these as you like (one for each label) and just make sure you replace "A" and "B" with 'label_1' and 'label_2', respectively.


' usage examples setting category A or B
Sub MarkA()    
Call MarkWithCategory("A")
End Sub 
Sub MarkB()    
Call MarkWithCategory("B")
End Sub 
' This is the main procedure
Sub MarkWithCategory(strCat As String)    
Dim objItem As Object   
Set objItem = GetCurrentItem()    
If Not objItem Is Nothing Then       
objItem.Categories = objItem.Categories & "," & strCat        
objItem.Save    
End If   
Set objItem = Nothing
End Sub 
' Returns the currently selected or open item 
Function GetCurrentItem() As Object   
Dim objApp As Outlook.Application    
Set objApp = CreateObject("Outlook.Application")    
On Error Resume Next   
Select Case TypeName(objApp.ActiveWindow)        
Case "Explorer"           
Set GetCurrentItem = objApp.ActiveExplorer.Selection.Item(1)        
Case "Inspector"           
Set GetCurrentItem = objApp.ActiveInspector.CurrentItem        
Case Else           
' anything else will result in an error, which is            
' why we have the error handler above    
End Select   
Set objApp = Nothing
End Function




The end result: buttons in your toolbar that automatically label your messages!

Disclaimer:  I didn't write this macro; I found it on here.

Wednesday, 23 February 2011

Enabling USB Support in VirtualBox for Ubuntu

Unfortunately, I still need Windows.  There are a few applications that won't work properly on WINE in Ubuntu (iTunes and Rosetta Stone to name two)...  So I use VirtualBox to boot Windows XP inside Ubuntu.

Here's the problem: there's no native USB support in VirtualBox.  This makes the whole virtual system just useless.  If you install the virtualbox-ose package from the Ubuntu repositories you will face this problem. The solution is to install virtualbox-4.0 from www.virtualbox.org.  Here's how:

This procedure was tested on Ubuntu 10.10 Maverick using a Windows XP Pro SP3 virtual machine.  The virtualbox started out as virtualbox-ose 3.2.8-dfsg-2ubuntu1 and ended up as Oracle virtualbox-4.0.4-70112~Ubuntu~Maverick.

*Don't worry about your existing virtualbox machines.  The install procedure outlined below is turnkey and  your machines will roll over unharmed to the upgraded application.*

1. Add the virtualbox.org repository

sudo gedit /etc/apt/source.list
Add the appropriate repository relative to your linux distribution
deb http://download.virtualbox.org/virtualbox/debian maverick contrib
deb http://download.virtualbox.org/virtualbox/debian lucid contrib
deb http://download.virtualbox.org/virtualbox/debian karmic contrib
deb http://download.virtualbox.org/virtualbox/debian jaunty contrib
deb http://download.virtualbox.org/virtualbox/debian intrepid contrib
deb http://download.virtualbox.org/virtualbox/debian hardy contrib

Get the Oracle public key:
wget -q http://download.virtualbox.org/virtualbox/debian/oracle_vbox.asc -O- | sudo apt-key add -

Upgrade virtualbox:
sudo apt-get update
sudo apt-get install virtualbox-4.0

2. Install the VirtualBox Extension Pack

You can grab it here or from the VirtualBox.org downloads page if the address has changed.  Virtualbox manager will open and ask if you wish to install the extension pack (yes).

3. Enable USB support

Add the current user (or whichever user will be running the virtual machine) to the vboxusers group.  You can do this graphically by System > Administration > Users and Groups.  Select the desired user and click Manage Groups.  Scroll to vboxusers, select Properties and add the desired user.



Next, open virtualbox manager if not already open.  You should be able to do this via Gnome Menu > System Tools > Oracle VirtualBox Manager or by launching virtualbox.  Select the machine in question, scroll to USB and enable.  You may need to install a generic usb driver to get the ball rolling.  

Next time you boot the virtual machine, simply right click the USB icon in the lower right hand corner to enable.

 

Finally, USB support for Windows programs in Ubuntu... now that wasn't so hard lol.

Thursday, 10 June 2010

How to Make Ubuntu Linux Look Like Windows 7

This post will show you how to modify your Ubuntu linux OS to look like Windows 7.

After displaying some pretty annoying warning messages for the last 3 months, my wife's Win7 eval copy has finally expired.  Now, I'm not spending $100 to upgrade to a new win7 system... apart from the fact that I don't like win7, it's definitely not a necessity when most time on the computer is spent in a browser or word processor.

Enter Ubuntu.  v10.04 (Lucid Lynx) is the most current and easiest-to-use distribution of linux yet.  If you're not yet on the Linux wagon take a look at this post.  But what if you don't want to learn a new operating system?  Or if you've gotten used to the look and feel of Windows?  No problem.  Among ubuntu's many benefits is its ability to customise its appearance - even to the likes of Windows7.



Step 1: Put Your Best Foot Forward

Make sure that your system is fully updated and that you are able to run normal Visual Effects.  You can do this by running:

sudo apt-get update
sudo apt-get upgrade

You can confirm that you are running normal Visual Effects by right-clicking anywhere on the desktop, selecting Change Desktop Background, selecting the Visual Effects tab and selecting Normal.




Step 2: Install Emerald

Emerald is a handy tool that allows you to install non-standard themes in Ubuntu.  We'll use Emerald to install the Windows7 theme.  Install emerald & libemeraldengine0 via Synaptic Package Manager or terminal:

sudo apt-get install emerald libemeraldengine0

You should now be able to access Emerald via System > Preferences > Emerald Theme Manager or via terminal:


from this link and save to a temp directory.  Run Emerald Theme Manager and load your newly downloaded theme by clicking in the Import button and navigating to the theme file in temp directory.  The theme details and imagery should now be seen in Emerald.  Close Emerald and open a window, say nautilus... you should see changes.  If there are no changes, hit Run Application (alt + F2 by default) and type:

emerald --replace

You should now see new Win7-like windows with transparent borders (as in first image in this post).  If you had to do this, chances are you'll need to do it each time you start your system.  To keep yourself from going insane, add the command to your startup procedure.  Go to System > Preferences > Startup Applications and add the above command.



You can also grab the default Windows 7 desktop wallpaper from below if you so desire (click to open).




Step 3: Install GnoMenu

The Windows Start menu doesn't exist in Ubuntu, but the gnomenu package does a pretty good job of replicating it.  Obviously it's not 100% the same.... probably not even 80% the same but I think it's good enough.

Install the gnomenu dependencies via terminal:

sudo apt-get install python python-xdg python-cairo python-gconf python-xlib deskbar-applet

Download the gnomenu .deb installer from this link and install with Package Installer.  After installation, simply add the menu to your bottom panel by right-clicking a free space on the bottom panel > Add to Panel > GnoMenu.  Note: If GnoMenu does not show up in this list you may need a quick restart.



Step 4: Some Visual Housekeeping

Now, of course you're free to keep your panels and menus however you desire.  But to adopt a truly Windows look and feel a few changes must be made.

Get rid of your top panel altogether by clicking on free space and selecting Delete This Panel.  Remove everything you no longer want on your lower panel (in my case I got rid of everything except GnoMenu, a couple launch icons, the Window List and the Time/Date).

Right-click on the bottom panel, select Properties and change the size to 38 and the background to "solid."  You can also add Window Selector to replace Window List, but this is a matter of personal preference.

Right-click on GnoMenu and select Properties.  Play around with the settings until you get a look and feel that works for you.  I recommend XP for Button Selection and Vista for Menu & Icon Selection. I also made the Windows icon (Super L) as the menu launch button on the Preferences tab.


Lastly, add the Computer, Home and Trash icons to the desktop.  In terminal, run:

gconf-editor


Check computer_icon_visible, home_icon_visible, and trash_icon_visible in the apps > nautilus > desktop key.  You should now see all three icons on your desktop.

Whew -- that's it.  As with any customisation, you may need to play around a little bit to make it work for you.  But you should now have a desktop that looks like this:



Note:  I found a particularly good set of Win7 icons that you can download from this link (password: justplainobvious.  You can use these items with any theme by customising the theme under Appearance Preferences. 

Monday, 23 November 2009

IE Tab in Google Chrome

[Edit:  Since the time of this post, a Google-chrome IE Tab has been released and can be found here.]


Firefox has a great plugin called IE Tab.  It basically allows you to open any link, URL, etc. in a new tab emulating IE.  This is convenient for running web apps such as OWA, where functionality is significantly decreased when using Chrome or FF.  Google's Chrome doesn't have this plugin, and it's extremely annoying!


Here's a way to (manually) emulate IE Tab in Chrome:
  1. Go to http://www.meadroid.com/neptune/ and install MeadCo's Neptune

  2. Copy npmeadax.dll from C:\Program Files\MeadCo Neptune\ to your Chrome \plugins directory (usually C:\Documents and Settings\USERNAME\Local Settings\Application Data\Google\Chrome\plugins\)

  3. Select this text and drag to bookmarks bar:
  4. Give it a name, such as "convert to IE"

  5. Click this bookmark whenever you open a page that requires IE emulation.
I realise that this procedure isn't as pretty as IE Tab.  You can't pre-program select URLs or domains to automatically open in IE, and there's no support for the context menu.  But, hey, at least it works!

Sunday, 22 November 2009

How to Add Your Google Calendar to Outlook 2007

I am now an employee on contract to another organization, and must manage a couple different email addresses on different virtual boxes.  The network security settings are such that I cannot easily share calendar information back and forth...thus I'm trying to use my Google Calendar as a go between:
  1. Start Outlook 2007. Make sure you have configured an active account.

  2. Identify a compatible Internet calendar. Check with your calendar provider to determine if they support the webcal protocol and can provide iCal files ending in ".ics." If not, select a provider that supports the protocol. Make sure any public sharing settings you need for remote calendar access are configured.

  3. In the Internet calendar configuration, locate the iCal Web address, which includes a file ending in ".ics." Copy this URL to the clipboard.

  4. Insert the iCal link into Outlook 2007. In Outlook 2007, select "File," and then "Data File Management." Select the "Internet Calendars" tab. Click "New," and then paste the iCal URL into the field. Hit "Add."

  5. Configure the subscription. The name of the calendar file displays next to "Folder Name." Change it if necessary. Add a description to make the calendar easy to identify if you install additional calendars. Check whether you want attachments to download from the Internet calendar under "Attachments." Finally, select whether you want the subscription according to the publisher's recommendations. Checking this option ensures that you will not exceed the publisher's limitations and risk having your calendar account suspended. Click "OK" when finished.

  6. Utilize your Internet Calendar. Click "Close" to return to Outlook 2007. After the Internet calendar is updated, it will display under "Other Calendars" in the Calendars section of Outlook 2007. Select it to manage your activities as you want them displayed on the Internet. You can use your Internet Calendar as you would internal Outlook 2007 calendars, such as displaying them side-by-side for easy copying of items from one to another.
Note: this was taken verbatim from an eHow.com article

Sunday, 8 November 2009

Moving to Google Reader for RSS Feeds

I've moved over to Google Reader.  I have about 25 RSS feeds that I follow regularly - some for work and some for personal pleasure.  I used to use the RSS Feeds Outlook Plugin and monitor most of these from Microsoft Outlook 2007.  However, it's starting to get slow and complicated and I'd rather not manage everything locally on my computer.


The latest Google Chrome version 4.0.237.0 finally supports Google Reader and so I'm moving over.  No more local hassle, let Google take care of it in the cloud.



Tuesday, 6 October 2009

How To Remove Windows Search (WDS)

I decided to switch from Windows Search to Google Desktop this morning... the microsoft search application was simply to slow and heavy.

Unfortunately, the application doesn't show up in Add/Remove Programs and there is no uninstall option from the Start Menu. After wracking my brain for a few minutes, I found this handy step-by-step guide by David Arno: http://www.davidarno.org/2008/08/22/how-to-remove-windows-desktop-search-...-revisited/

Works like a charm.

Thursday, 25 June 2009

5 plugins that will change your outlook on Outlook

My love affair with Outlook only started when our company upgraded to Microsoft Office 2007. Before the 2007 suite I really disliked Outlook. Heck, I disliked most of the Office suite (I was a big OpenOffice + Thunderbird user for a time). But the cool integration and new layout started to grow on me. I became more and more involved in customising my experience with Outlook.

Now, I've compiled a list of the 5 "must-have" plugins for Outlook 2007. If you're a business user and you work out of Outlook, get these 5 plugins now (they're all FREE). They'll change the way you work.

  1. SpamBayes - Do you work from an Exchange Server? Yeah, me too. Does your network admin have non-cutomisable spam filtering rules? Yeah, mine too. Do you still get spam? ....Yeah, me too! SpamBayes is a semi-intelligent plugin that filters your spam. It moves suspected spam into a Junk Suspects folder and allows you to mark it Spam/Not Spam. Based on your characterisation, the program learns what sort of email you get and adapts its spam-filtering rules accordingly. The downside? This only filters spam once it reaches Outlook, which means anything that you access off of say, a BlackBerry, is still plagued.
  2. RSS Popper - This tool allows for absolute control of RSS feeds. I have more than a dozen RSS feeds that are updated constantly throughout the workday. RSS Popper allows me to receive these posts in custom Outlook folders according to a customised schedule. *note: our network admin has disabled the native Outlook RSS client, so I have no idea how it compares
  3. LinkedIn Toolbar - If you use LinkedIn (and really, who doesn't these days?), the LinkedIn Toolbar for Outlook will cut the time you spend on LinkedIn in half while still providing you with the same results. Before this toolbar, I would have to take a contact's name, open a web browser, hit linkedin.com and do a search. The toolbar allows me to do this directly in Outlook! It also allows for automatic creation of Outlook contacts from your LinkedIn contacts (and vice versa) and displays an icon on every email that you may mouse-over to see the sender's LinkedIn profile.
  4. WebEx Integration - The only tool I use more than Outlook is WebEx (maybe Excel...). WebEx is an online meeting tool that I use daily. It allows me to hold virtual meetings with teleconferencing & screensharing. The problem is, many people use Outlook for their scheduling (myself included). The WebEx Integration plugin allows you to seamlessly add a WebEx meeting to an Outlook Meeting Request. The Meeting Request goes out, WebEx auto-adds the virtual meeting info, and you're good to go! All done from your Outlook Calendar.
  5. Xobni - Xobni is an all-in-one contact manager and email search tool. It gives you detailed stats on every sender in your inbox, and can pull up past conversations, files exchanged, or contact info with the greatest of ease. It even pulls the sender's photo from Facebook/LinkedIn so you can see who's emailing you! BUT, there is a downside with Xobni: all the contact information it gathers does not sync with Outlook contacts. This means that if you use a portable device (like a BlackBerry), you need to also create all of your contacts in Outlook (and add photos, etc.)
There you have it! The 5 plugins that will change your outlook on Outlook.

Monday, 8 June 2009

taming a non-existent Outlook Express

A quick Google search tells me that I'm not the only person experiencing this problem. For some unknown reason, every time I boot Windows XP I get the following pop-up:

"To free up disk space, Outlook Express can compact messages. This may take some up to a few minutes"

What the heck? I don't even have Outlook Express installed on my laptop...it's usually one of the first things I remove after installing Office. Now, I just click cancel, go on my way, and I'm good until the next reboot. However, some users report seeing this pop-up every few minutes. What a nuisance!

Turns out that this friendly little bugger appears after installing Windows Search. Windows Search is a great little tool for indexing your email - I highly recommend it. However, by default it also indexes Outlook Express...even if it's not installed on your machine. In order to index, Search has to run the program. Apparently OE keeps a counter and prompts the user to compact messages after 100 runs of the program (the counter exists even though the program does not...go figure).

Steps to solve:

  1. Right-click on Windows Search in the system tray (magnifying class in the bottom-right corner)
  2. Select "Windows Search Options"
  3. Click "Modify" and un-check Outlook Express
This will stop Search from indexing (and running) OE. BUT, since the counter has already opened 100 times, it must be reset or the pop-ups will continue:
  1. Start > Run > "regedit"
  2. Navigate to HKEY_CURRENT_USER\Identities\{GUID}\Software\Microsoft\Outlook Express\5.0
  3. Open "Compact Check Count"
  4. Change value to zero
  5. Reboot
Finito!

Sunday, 15 March 2009

Enable macros in Outlook

So you've decided that Outlook out-of-the-box isn't exactly productive software and you'd like to start making a few changes here and there. If you want to customise Outlook and boost efficiency, you probably need to start using macros.

Writing macros allows you to do almost anything in Outlook, so long as you can code it :-). You can add an Archive button or automatically bcc all outgoing mail, and much, much, much more.

This post doesn't teach you how to write macros, you can try Googling "outlook macros" for that. In this post, I'm simply showing you how to set up Outlook to accept macro commands.

  1. From the menu bar, select Tools > Trust Centre
  2. In the Trust Centre's left navigation menu, click on Macro Security
  3. Select either Warnings for all macros or No security checks for macros (the first option requires you to enable macros every time Outlook starts, the second option enables macros automatically).
Enable macros in OutlookYou're now ready to go! You can start customising Outlook today and make up for Microsoft's mistakes :-)

  © Blogger template 'Isolation' by Ourblogtemplates.com 2008

Back to TOP