For the purposes of this instruction, the screenshots will display installing the TutorTrac application as a service. Interchange TutorTrac with your own Trac application. The Trac application files differ between products:
Product
|
Application Name
|
AdvisorTrac
|
Advisor.exe
|
FitnessTrac
|
Fitness.exe
|
LabTrac
|
LabTrac.exe
|
TutorTrac
|
TutorTrac.exe
|
Open a Command Prompt window and navigate to your Trac application directory.
cd C:\TutorTrac
Now enter the following code to install the service. TutorTrac is the name of the service. C:\TutorTrac\TutorTrac.exe is the location and name of the Trac application.
winserv install TutorTrac C:\TutorTrac\TutorTrac.exe
Enter the following code to configure your Trac service to start automatically.
winserv configure TutorTrac -start auto
Enter the following code to change the display name of the service.
winserv configure TutorTrac -displayname "TutorTrac"
Enter the following code to add a description to your Trac service installation. This description is found in the Windows Services listing.
winserv configure TutorTrac -description "Add a description here"
|