When I try to install my package , I see two msiexec running in process explorer. AFter some time one of the msiexec goes away but one still keep running
Anyone has idea why this happening ?
|
When I try to install my package , I see two msiexec running in process explorer. AFter some time one of the msiexec goes away but one still keep running Anyone has idea why this happening ? | ||||
|
feedback
|
This question came from our site for professional and enthusiast programmers.
|
One process is running the UI sequence, and writing the script (the list of changes to be made to the target system). It then passes the script to the other process, which actually makes the changes. The process running the UI sequence is created when you run an install, running in your user context. When the install finishes, the process exits. The process that's making changes is a service, running as localsystem. Here's what MSDN has to say about it: http://msdn.microsoft.com/en-us/library/aa369288%28VS.85%29.aspx | |||
feedback
|