Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 5th, 2012  |  syntax: None  |  size: 1.62 KB  |  hits: 15  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. wix service start manual vs through msi
  2. Log Name: System
  3. Source: Service Control Manager
  4. EventID: 7045
  5. Level: Information
  6. User: SYSTEM
  7. OpCode : Info
  8.  
  9.  
  10. A service was installed in the system.
  11.  
  12. Service Name:  MyService
  13. Service File Name:  "C:Program FilesMyProductMyService.exe"
  14. Service Type:  user mode service
  15. Service Start Type:  auto start
  16. Service Account:  LocalSystem
  17.        
  18. Log Name: System
  19. Source: Service Control Manager
  20. EventID: 7045
  21. Level: Information
  22. User: MYDOMAINadministrator
  23. OpCode : Info
  24.  
  25.  
  26. A service was installed in the system.
  27.  
  28. Service Name:  MyService
  29. Service File Name:  "C:Program FilesMyProductMyService.exe"
  30. Service Type:  user mode service
  31. Service Start Type:  demand start
  32. Service Account:  LocalSystem
  33.        
  34. <Component Id="Service" Guid="*">
  35.         <File Id="MyService.exe"
  36.               Name="MyService.exe"
  37.               Source="MyService.exe"/>
  38.  
  39.         <ServiceInstall Id="ServiceInstaller"
  40.                         Type="ownProcess"
  41.                         Vital="yes"
  42.                         Name="MyService"
  43.                         DisplayName="Name="MyService.exe"
  44.                         Description="Name="MyService.exe"
  45.                         Start="auto"
  46.                         Account="LocalSystem"
  47.                         ErrorControl="normal"
  48.                         Interactive="no">
  49.  
  50.           <ServiceDependency Id="CcmExec"/>
  51.         </ServiceInstall>
  52.  
  53.         <ServiceControl Id="ServiceController"
  54.                         Start="install"
  55.                         Stop="both"
  56.                         Remove="uninstall"
  57.                         Name="MyService"
  58.                         Wait="no"/>
  59.       </Component>