![]() |
If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below. |
|
|
Thread Tools | Search this Thread | Display Modes |
|
#1
|
|||
|
|||
![]()
From C# code:
I have com add-in to outlook 2003, code in c#. I want to check if this add-in already installed in this computer. private void isOutlook() { Microsoft.Win32.RegistryKey key = Microsoft.Win32.Registry.LocalMachine.OpenSubKey(" Software\\microsoft\\windows\\currentversion\\app paths\\OUTLOOK.EXE"); string path = (string)key.GetValue("Path"); if( path != null)// if have outlook do the installing com add-in //if this com add-in not yet installed System.Diagnostics.Process.Start("C:\\MatarotToolb ar\\MatarotToolbarSetup\\Debug\\Setup.Exe"); } |
#2
|
|||
|
|||
![]()
Check if your add-in is in SOFTWARE\Microsoft\Office\Outlook\Addins in
either HKLM or HKCU. Dmitry Streblechenko (MVP) http://www.dimastr.com/ OutlookSpy - Outlook, CDO and MAPI Developer Tool "Yael" wrote in message ... From C# code: I have com add-in to outlook 2003, code in c#. I want to check if this add-in already installed in this computer. private void isOutlook() { Microsoft.Win32.RegistryKey key = Microsoft.Win32.Registry.LocalMachine.OpenSubKey(" Software\\microsoft\\windows\\currentversion\\app paths\\OUTLOOK.EXE"); string path = (string)key.GetValue("Path"); if( path != null)// if have outlook do the installing com add-in //if this com add-in not yet installed System.Diagnostics.Process.Start("C:\\MatarotToolb ar\\MatarotToolbarSetup\\Debug\\Setup.Exe"); } |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
How to check outlook is installed? | Pradeep | Outlook - General Queries | 2 | May 12th 07 10:14 PM |
How do I check my email on another computer? | LalaBobo | Outlook - General Queries | 2 | October 10th 06 12:51 AM |
Is there a way to synchronize favorites between 2 computers? i.e. copy any favorites on computer A but not computer B to computer B and any on computer B but not computer A to computer A? | Huck | Outlook - Using Contacts | 1 | September 17th 06 11:54 AM |
Outlook express can't spell check. It says to check later. | Harold | Outlook - General Queries | 2 | September 8th 06 11:56 PM |
unable to check email on networked computer | TongSlinger | Outlook Express | 3 | April 20th 06 12:06 AM |