In a VB application I am building, I need to launch Outlook. Obviously, on every computer the path to Outlook will not be the same. Thus, I need to know how to find the path of Outlook on the user's computer before I Shell("path"). How would I do this?

link|improve this question

0% accept rate
Oops, please forgive my wrong “close” vote. I was too trigger happy. – Konrad Rudolph Jul 7 '11 at 13:50
see this stackoverflow.com/questions/6603287/… if you are wanting to access outlook from withing your app. – dbasnett Jul 7 '11 at 15:33
feedback

6 Answers

Usually Outlook is installed into the environment path, so you could just use:

 Process.Start("Outlook.exe")
link|improve this answer
+1 Much better solution than mine. – George Jul 7 '11 at 13:54
feedback

If you simply want to send mail via outlook (or any default email client), you can always just shell mailto:name@host.com, which will create a new mail message with the email in the subject line. You can also append other variables using an HTML email shell.

Otherwise...

You can check if Microsoft Office is installed, and grab the path via the registry. You can then navigate to the Outlook directory e.g.

Sub CheckOfficeXPInstalled()
   InstallRoot = System.PrivateProfileString("", _
 "HKEY_LOCAL_MACHINE\Software\Microsoft\Office\10.0\Common\InstallRoot", _
 "Path")
   If InstallRoot <> "" Then
     MsgBox "An Office XP Family Product is installed at " & InstallRoot
   End If
End Sub

See How to programatically determine if Microsoft Office is installed

link|improve this answer
feedback

First, the user might have multiple versions of Outlook installed.

You could try this registry path:

HKLM\Software\Microsoft\Windows\CurrentVersion\App Paths\OUTLOOK.EXE\Path

...Works for me!

If you're going to send an email, etc, by the way, you could run the commandline, mailto:address@here.com - look at the mailto: protocol. It will launch any email client.

link|improve this answer
feedback

You don't lauch Outlook by finding its exe.

You launch it by creating it.

Dim o As Object = CreateObject("Outlook.Application")
o.Visible = True

(Requires Option Strict Off)

link|improve this answer
That looks a bit leaky. Is there no cleanup to be done afterwards? – Kieren Johnstone Jul 7 '11 at 14:00
@Kieren Provided you launch it for the user, not really. Otherwise, o.Close and Marshal.ReleaseComObject(o). – GSerg Jul 7 '11 at 14:03
feedback

It depends on the version of Office you're using but, for Office 2010 on 64-bit Windows the Microsoft Office install root folder is held in the Path value under the registry key HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Office\14.0\Outlook\InstallRoot. For 32-bit Windows remove the Wow6432Node. OUTLOOK.EXE lives in the folder specified by this registry value.

link|improve this answer
feedback

I think that one of the .net environment variables will point to the default program files directory. But if a user installs anywhere this you may simply have to use the FileSystemObject object and run round the file system looking for outlook.exe.

link|improve this answer
no need for env. variables, there is something like GetSpecialFolder... – Davide Piras Jul 7 '11 at 13:53
@davide GetSpecialFolder looks good - msdn.microsoft.com/en-us/library/a72y2t1c(v=vs.85).aspx - rubbish name, mind! – amelvin Jul 7 '11 at 13:55
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.