(2019-12-22, 08:39 PM)sub Wrote: What output do you get when you run 'installservice.bat'?
(2019-12-22, 08:48 PM)sub Wrote: The "NPVR" directory was v4 and earlier. The "NPVR-data" directory is v5 and later. Can you scroll up that installservice.bat and get another screenshot, so we can see what happened earlier?
(2019-12-22, 08:52 PM)sub Wrote: What version of windows are you running? I think it's version of the utility for installing services is slightly different
netsh.exe advfirewall firewall add rule name="NextPVR" dir=in action=allow program="installpath%Client\NextPVR.exe" enable=yes > nul to netsh.exe advfirewall firewall add rule name="NextPVR" dir=in action=allow program="%installpath%Client\NextPVR.exe" enable=yes > nul
sc create "NextPVR Service" binpath="%installpath%NextPVRService.exe" start=delayed-auto to sc create "NextPVR Service" binpath= "%installpath%NextPVRService.exe" start= delayed-auto
(2019-12-22, 09:04 PM)nobody Wrote: Had the same problem with installservice.bat on WIN7, the following needs to be changed for Win 7 to be happy Code:netsh.exe advfirewall firewall add rule name="NextPVR" dir=in action=allow program="installpath%Client\NextPVR.exe" enable=yes > nul to netsh.exe advfirewall firewall add rule name="NextPVR" dir=in action=allow program="%installpath%Client\NextPVR.exe" enable=yes > nulAdd % before installpath Code:sc create "NextPVR Service" binpath="%installpath%NextPVRService.exe" start=delayed-auto to sc create "NextPVR Service" binpath= "%installpath%NextPVRService.exe" start= delayed-autoAdd a space after the = signs My copy of Win7 is still not happy. Even with your changes it didn't enter the service. Thanks for trying.