The steps are:
- Open Start Menu
- Open Control Panel
- Open System and Security
- Open Administrative Tools
- Open Services
- Locate WindwardConnectTraining (If installed) )
- Select Stop (If running, otherwise proceed to 8)
- The Stop button should change to Start
- Select Start
- Locate WindwardConnectProduction
- Select Stop (If running, otherwise proceed to 12)
- Select Start
Creating RebootWindwardConnect.bat
This batch file will locate the PID number of the Windward Connect service then will force restart the WEBAPI Service.
1. Open Notepad.
2. Copy and paste this code to the notepad.
FOR /F "tokens=3" %%A IN ('sc queryex WindwardConnectProduction ^| findstr PID') DO (SET pid=%%A) IF "!pid!" NEQ "0" ( taskkill /F /PID %PID% net start WindwardConnectProduction)
3. Rename the WindwardConnectProduction with the Service name that is installed in the server.
4. save it as RebootWindwardConnect.bat