Service Check "Engine not found"

Questions about Cobian Reflector
Post Reply
User avatar
Boonew
Posts: 15
Joined: 05 Jul 2023, 12:10
Location: South Africa

Service Check "Engine not found"

Post by Boonew »

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

Code: Select all

$ServiceName = 'Cobian.Reflector.Service'
$arrService = Get-Service -Name $ServiceName

while ($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'
    }

}
billmcct
Posts: 4
Joined: 24 Feb 2022, 19:07

Re: Service Check "Engine not found"

Post by billmcct »

Services >

Cobian Reflector Volume Shadow Copy requester

In Task Manager >

CobVSCRequester
User avatar
cobian
Site Admin
Posts: 4675
Joined: 31 Oct 2020, 01:25
Location: Sweden
Contact:

Re: Service Check "Engine not found"

Post by cobian »

Cobian.Reflector.Application.exe cannot be run as a service. Cobian.Reflector.Service.exe is the service part and the service name is CobianReflectorService
--
Luis Cobian
Cobian Backup's creator
Post Reply