Hi, so today I have had two failures with the engine. Which I've never had before.
The tray icon is red with "Engine not found" when I double click it.
I kick off "Cobian Reflector Main Application" and it kickstarts it again.
I'm thinking of scheduling this ps, but I need to confirm the actual service name for Cobian.Reflector.Application.exe as I don't see it running in my services but it is running on the taskbar. So is there a Service for this or just an application in the background
The tray icon is red with "Engine not found" when I double click it.
I kick off "Cobian Reflector Main Application" and it kickstarts it again.
I'm thinking of scheduling this ps, but I need to confirm the actual service name for Cobian.Reflector.Application.exe as I don't see it running in my services but it is running on the taskbar. So is there a Service for this or just an application in the background
Code:
$ServiceName = 'Cobian.Reflector.Service'$arrService = Get-Service -Name $ServiceNamewhile ($arrService.Status -ne 'Running'){ Start-Service $ServiceName write-host $arrService.status write-host 'Service starting' Start-Sleep -seconds 60 $arrService.Refresh() if ($arrService.Status -eq 'Running') { Write-Host 'Service is now Running' }}
Statistics: Posted by Boonew — 06 May 2024, 14:41