srvany

How does a windows service set off an application at a standard interval?

放肆的年华 提交于 2019-12-10 23:43:40
问题 A consultant setup a windows service to run a application. The application is supposed to run every 15 minutes. The application is not running at all and the service appears to be running fine. I am not familiar with how an application will run at a standard interval when running as a service. The service uses the SRVANY.EXE tool. 回答1: Any 'consultant' that sets up a service to run using SRVANY.EXE should be fired. SRVANY is an unfortunate hack that should have been retired a decade ago; it

Wix installer to replace INSTSRV and SRVANY for user defined service installation

半腔热情 提交于 2019-11-27 09:22:40
I created an executable MyService.exe using Visual Studio C# Express. There are no options in the Express version to create a service. In the past, this has been manually installed as a user defined service using the INSTSRV and SRVANY as described in the MSDN Article 'How To Create a User-Defined Service' Is it possible to create a wix 3.5 installer for this file that doesn't require the existence of the SRVANY.exe and INSTRV.exe files on the target machine does not use INSTSRV.exe as a custom action WiX does support installing Windows services, but only native ones. This means that the

Wix installer to replace INSTSRV and SRVANY for user defined service installation

感情迁移 提交于 2019-11-26 17:50:01
问题 I created an executable MyService.exe using Visual Studio C# Express. There are no options in the Express version to create a service. In the past, this has been manually installed as a user defined service using the INSTSRV and SRVANY as described in the MSDN Article 'How To Create a User-Defined Service' Is it possible to create a wix 3.5 installer for this file that doesn't require the existence of the SRVANY.exe and INSTRV.exe files on the target machine does not use INSTSRV.exe as a