Click here to Skip to main content
15,890,845 members
Please Sign up or sign in to vote.
2.60/5 (3 votes)
See more:
The description for Event ID 11001 from source MsiInstaller cannot be found. Either the component that raises this event is not installed on your local computer or the installation is corrupted. You can install or repair the component on the local computer.

If the event originated on another computer, the display information had to be saved with the event.

The following information was included with the event:

Product: RMSEmailReader -- Error 1001. Error 1001. An exception occurred in the OnAfterInstall event handler of System.ServiceProcess.ServiceInstaller. --> Cannot start service RMSEmailReader on computer '.'. --> The service did not respond to the start or control request in a timely fashion
(NULL)
(NULL)
(NULL)
(NULL)

the message resource is present but the message is not found in the string/message table

C#
private void serviceInstaller1_AfterInstall(object sender, InstallEventArgs e)
       {
               //RMSEmailReader is Service Name
           new ServiceController("RMSEmailReader").Start();
       }
Posted
Updated 30-Mar-17 14:42pm

1 solution

 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900