Reputation: 27
I have developed an application which creates an outlook application using outlook object model. But I need this application to run on machines in which outlook is not installed. I have refered the below link... Why doesn't the office PIA install correctly to the GAC?
where it is mentioned that copying the dll works. I would like to know the login information for the outlook. In my App,I have to get the details from outlook. Does any one have an idea of running an App which retreives the information from outlook on the machines in which outlook is not installed? If so, does it requires any credentials and how to pass them?
Upvotes: 0
Views: 130
Reputation: 7596
If Outlook is not installed, there is no information to retrieve from the "not installed" outlook.
So, do a check in your software:
*) if outlook is installed, retrieve the information
*) if outlook is not installed, return "no information" (as if outlook is installed, but doesn't contains any information)
Upvotes: 1