![]() |
Scense Client- and Update Service installers support SVCSTART property - Printable Version +- Scense (http://www.scense.com/forum) +-- Forum: Scense User Group (http://www.scense.com/forum/forumdisplay.php?fid=1) +--- Forum: General Discussion (http://www.scense.com/forum/forumdisplay.php?fid=2) +--- Thread: Scense Client- and Update Service installers support SVCSTART property (/showthread.php?tid=60) |
Scense Client- and Update Service installers support SVCSTART property - Richard - 06-03-2015 As of Scense 10 the installers (msi) for the Scense Client and the Scense Update Service support a new public property called 'SVCSTART'. This property controls the automatic starting of the installed services. Using this property has some advantages:
SVCSTART=0 will leave the installed service in the stopped state. SVCSTART=1 will start the service as part of the installation (Default). Here's an example of how the SVCSTART property is used: :Install Scense Client start /B /HIGH /WAIT %windir%\system32\msiexec.exe /i "Scense Client.msi" ODSUSER="SCENSE\Scense_ODS" ODSPASS="password" SCENSESERVER="SERVER" ALLUSERS=1 REBOOT="ReallySuppress" SVCSTART=0 /q net start Scense_ODS |