I have created a addin for outlook 2003 using c# and installing using setup project. How can i prompt user to close outlook if it is open during install/uninstall? In setup project how can i add this condition?
I have created a addin for outlook 2003 using c# and installing using setup project. How can i prompt user to close outlook if it is open during install/uninstall? In setup project how can i add this condition?
You can get all processes by some name: Process [] localByName = Process.GetProcessesByName("notepad"); But it is not a strong solution. User can modify name of a file executes an outlook so you didn't get it :(