2019-10-18, 04:41 AM
Tried the latest build but the service was not created when I ran installservice.bat as admin and got this message...
C:\WINDOWS\system32>echo OFF
adding firewall rules...
starting service...
The service name is invalid.
More help is available by typing NET HELPMSG 2185.
will start web app setting soon...please wait
For one thing, in the bat file part of line 8 has a syntax error which creates an incorrect firewall rule
program="installpath%Client\NextPVR.exe" enable=yes > nul
So I changed it to...
program="%installpath%NextPVR.exe" enable=yes > nul
The firewall rule was fixed but it still gave me the error message.
After messing with the bat file I got it to work by changing the last bit of line 12 from ">nul" to "> nul"
I attached the modified file that works for me.
C:\WINDOWS\system32>echo OFF
adding firewall rules...
starting service...
The service name is invalid.
More help is available by typing NET HELPMSG 2185.
will start web app setting soon...please wait
For one thing, in the bat file part of line 8 has a syntax error which creates an incorrect firewall rule
program="installpath%Client\NextPVR.exe" enable=yes > nul
So I changed it to...
program="%installpath%NextPVR.exe" enable=yes > nul
The firewall rule was fixed but it still gave me the error message.
After messing with the bat file I got it to work by changing the last bit of line 12 from ">nul" to "> nul"
I attached the modified file that works for me.