2014-05-04, 10:08 AM
Hi All,
I just installed NextPVR and your nDroid program. Initially, the service failed to install. I traced this initially to the batch file test on line 4 of the InstallService.bat :
It seems That this test matches
in my system. So I changed Line 4 to Read
this changed made the test for the "nDroid Serivce" case sensitive , bypassing the false positive hits against the two BlueStacks Android services this permitted the test to process correctly and the service installed properly.
FWIW and HTH
I just installed NextPVR and your nDroid program. Initially, the service failed to install. I traced this initially to the batch file test on line 4 of the InstallService.bat :
Code:
sc query state= all | find /I "nDroid Service"
It seems That this test matches
Code:
c:\Program Files (x86)\Beetec Services\nDroid Service>sc query state= all | find /I "nDroid"
SERVICE_NAME: BstHdAndroidSvc
DISPLAY_NAME: BlueStacks Android Service
in my system. So I changed Line 4 to Read
Code:
sc query state= all | find "nDroid Service"
this changed made the test for the "nDroid Serivce" case sensitive , bypassing the false positive hits against the two BlueStacks Android services this permitted the test to process correctly and the service installed properly.
FWIW and HTH