Hello,
Did anyone else encounter the issue where WebCon Workflow Service doesn't start automatically after a system restart? If yes, how did you fix that?
TIA,
Martin
Hello,
Did anyone else encounter the issue where WebCon Workflow Service doesn't start automatically after a system restart? If yes, how did you fix that?
TIA,
Martin
Check the event log of the server on which WEBCON is installed to see what kind of startup error you have
Hi,
Sometimes setting up a scheduler (Task Scheduler) and a powershell script helps:
Get-Service -Name "WebCon WorkFlow Service" | Where-Object {$_.Status -NE "Running"} | Start-Service
$date = get-date
$date | export-csv C:\PowerShell\log.csv
The service may not start, for example, when you are making a backup or when the database simply does not respond after starting the server.