Kroo.Sync.Service.exe), configured via:
Checking Agent Logs
To verify whether the agent is running successfully, check the service log at:Checking Windows Event Logs
Always start here. The Windows Event Viewer contains detailed error messages that pinpoint the root cause of most agent issues.
- Press
Win + R, typeeventvwr.msc, and press Enter. - Expand Windows Logs > Application.
- Filter for errors from
Kroo.Sync.Service.exeor.NET Runtime.
Service Error 1053
The service fails to start with: The service did not respond to the start or control request in a timely fashion. Check the Event Viewer for an error like:appsettings.json.
Fix
Remove the duplicate entry
Open
C:\ProgramData\KrooData\appsettings.json and search for the key from the error message (e.g., APM_MASTER__VENDOR). Delete the duplicate, keeping only one instance.Validate the JSON
Paste the file contents into a JSON validator (such as jsonlint.com) to catch syntax errors like trailing commas or missing brackets.
General Tips
- Validate JSON before saving — a syntax error in
appsettings.jsonwill prevent the service from starting. - Restart after config changes — the agent only reads
appsettings.jsonat startup.
Need help? Email implementations@getkroo.com with the Event Viewer error details and a copy of your
appsettings.json.