- Support
- How do I restart Power Pick services?
-
Account & Licensing
-
Installing & Updating
-
Power Pick Connections
-
Data Push & Data Pull
-
API
-
Reports
-
Snapshots & Dashboard
-
Workflows
How do I restart Power Pick services?
You can use a Batch file or cmd to stop and start Power Pick services. Be careful when doing this to make sure that all production has stopped, as this will log all users out and could interrupt active processing.
Occasionally a service may get stuck during this process, so check that all services stopped and started again successfully.
Batch file to stop services (filename.bat):
net stop PowerPick.RuleEngine
net stop PowerPick.MachineControlService
net stop PowerPick.GPX.WMS.Host
net stop PowerPick.GPX.WES.Host
net stop PowerPick.CrossEnterpriseUnit
net stop PowerPick.AdminEngine.DiagnosticsService
Batch file to start services (filename.bat):
net start PowerPick.RuleEngine
net start PowerPick.MachineControlService
net start PowerPick.GPX.WMS.Host
net start PowerPick.GPX.WES.Host
net start PowerPick.CrossEnterpriseUnit
net start PowerPick.AdminEngine.DiagnosticsService
If you're having trouble with services not starting, you can use CMD file to kill tasks (filename.cmd):
taskkill /IM "GP.InstanceManager.exe" /F
taskkill /IM "GP.RuleEngine.exe" /F
taskkill /IM "GP.MachineControlService.exe" /F
taskkill /IM "GP.CrossEnterpriseUnit.exe" /F
taskkill /IM "GP.AdminEngine.DiagnosticsService.exe" /F
taskkill /IM "GPX.WES.Host.exe" /F
taskkill /IM "GP.UI.Win.exe" /F
taskkill /IM "GPX.WMS.Host.exe" /F
pause