Outlook archives - The ranting of an IT Professional

The ranting of an IT Professional:

outlook

Oct 22 2009   8:11PM GMT

Recovering a file from the Outlook temp folder



Posted by: Jason Tramer
outlook, temp, temporary, folder, recover, saved, accidently, OLK

Ever opened an attachment in Outlook, made changes, and then did a save instead of save as? Suck’s I know. Microsoft seems to delight it making it all but impossible to find your file. Windows search will be of absolute no help here.

So here is what you do.

First find the location of you Outlook temp directory. You can get this info from the registry

Outlook 97 HKEY_CURRENT_USER\Software\Microsoft\Office\8.0\Outlook\Security
Outlook 98 HKEY_CURRENT_USER\Software\Microsoft\Office\8.5\Outlook\Security
Outlook 2000 HKEY_CURRENT_USER\Software\Microsoft\Office\9.0\Outlook\Security
Outlook 2002/XP HKEY_CURRENT_USER\Software\Microsoft\Office\10.0\Outlook\Security
Outlook 2003 HKEY_CURRENT_USER\Software\Microsoft\Office\11.0\Outlook\Security
Outlook 2007 HKEY_CURRENT_USER\Software\Microsoft\Office\12.0\Outlook\Security

You can try navigating to this location in Windows explorer but for me it lead to a dead end, I could no see the folder it specified even though I had selected show hidden files and de-selected Hide essential operating system files. However you can access this from command prompt. Open command prompt, navigate to the folder (you can use the tab key to save time by auto populating fields) and then use the copy command to copy this file somewhere else on your computer.

Bang, Bob’s your uncle. No the only thing left to do is email Microsoft and ask them why they hate you so much.

Oct 9 2009   9:35PM GMT

Forms with VBScript do not work with Terminal Services in Outlook



Posted by: Jason Tramer
outlook, vbscript, Citrix, Terminal Services, not working

Ok so this is a known issue I encountered that I wanted to post about. I found a MS support article with a fix for this.

 http://support.microsoft.com/kb/302003

So in situations where you are running Outlook on a TS(or Citrix) box, VBScript will not work and you will need to apply the fix in the article to get it working.


Sep 30 2009   1:42PM GMT

Warning message when you start Outlook 2007 and then connect to a mailbox that is hosted on an Exchange 2007: Security certificate is invalid.



Posted by: Jason Tramer
outlook 2007, outlook, Exchange, 2007, ssl, Security, certificate, warning, internal

I encountered this issue when setting up an Exchange 2007 environment. After I installed the SSL cert for OWA all of the users using Outlook 2007 reported that they got a certificate warning when opening Outlook internally.

A co-worker of mine found this support article which fixed the issue and saved my bacon.

SYMPTOMS
When you start Microsoft Office Outlook 2007 and then connect to a mailbox that is hosted on a mailbox server that is running Microsoft Exchange Server 2007, you receive the following security warning message:

The name of the security certificate is invalid or does not match the name of the site.

CAUSE
You replace the default self-signed Exchange 2007 certificate with a different certificate.

By default, the URL that is stored in these objects references the NetBIOS name of the server. For example, a URL that resembles the following URL is stored:

https://NetBIOS_name.contoso.com/autodiscover/autodiscover.xml

This may differ from the host name that is used in the FQDN of the replacement certificate. For example, the replacement certificate may have an FQDN that resembles the following FQDN:

mail.contoso.com

This issue causes a name mismatch error to occur. Therefore, you receive the security warning message when you try to connect Outlook 2007 to the mailbox.

RESOLUTION
To resolve this issue, modify the URLs for the appropriate Exchange 2007 components. To do this, follow these steps:
1. Start the Exchange Management Shell.
2. Modify the Autodiscover URL in the Service Connection Point. The Service Connection Point is stored in the Active Directory directory service. To modify this URL, type the following command, and then press ENTER:

Set-ClientAccessServer -Identity CAS_Server_Name -AutodiscoverServiceInternalUri https://mail.contoso.com/autodiscover/autodiscover.xml

3. Modify the InternalUrl attribute of the EWS. To do this, type the following command, and then press ENTER:

Set-WebServicesVirtualDirectory -Identity “CAS_Server_Name\EWS (Default Web Site)” -InternalUrl https://mail.contoso.com/ews/exchange.asmx

4. Modify the InternalUrl attribute for Web-based Offline Address Book distribution. To do this, type the following command, and then press ENTER:

Set-OABVirtualDirectory -Identity “CAS_Server_name\oab (Default Web Site)” -InternalUrl https://mail.contoso.com/oab

5. Modify the InternalUrl attribute of the UM Web service. To do this, type the following command, and then press ENTER:

Set-UMVirtualDirectory -Identity “CAS_Server_Name\unifiedmessaging (Default Web Site)” -InternalUrl https://mail.contoso.com/unifiedmessaging/service.asmx

6. Open IIS Manager.
7. Expand the local computer, and then expand Application Pools.
8. Right-click MSExchangeAutodiscoverAppPool, and then click Recycle.

Source: http://support.microsoft.com/kb/940726

, ,