Quantcast
Channel: Microsoft Dynamics GP
Viewing all articles
Browse latest Browse all 38722

Forum Post: RE: Scribe Console Says That Services Are Not Running When They Are

$
0
0
John. These are quite often related to network permissions and how the server is setup. Do the DTS jobs run manually ok? Can't really help with the error much without seeing it, did you call your Support Partner? As for manually restarting, you can run something like this on a schedule: @echo off sc query "Scribe MessageServer" | find "RUNNING" IF %errorlevel% == 0 ( net stop "Scribe MessageServer" timeout 12 net stop "Scribe EventManager" /y timeout 8 echo Services stopped successfully. Starting services.... ) ELSE ( echo Services not running. Starting services... ) net start "Scribe EventManager" timeout 8 net start "Scribe MessageServer" timeout 8 IF %errorlevel% == 2 ( echo Could not start service. ) ELSE IF %errorlevel% == 0 ( echo Service started successfully. ) ELSE ( echo Starting failed. Errorlevel: %errorlevel%... )

Viewing all articles
Browse latest Browse all 38722

Trending Articles