I am trying to set up vlc ntserver as a secondary interface by using the following command
vlc.exe -I ntservice --ntservice-install --ntservice-extraintf=http --ntservice-option=--http-host=<my ip>:<my port>
I have 2 problems with this:
1) The above command doesnt work reliably. I have found that after I have run this command the first time after my pc has booted, it installs the service. But if uninstall the service by using the command
vlc.exe -I ntservice --ntservice-uninstall
and then try to run the install command again, it gives an error in the system log
The ScRegSetValueExW call failed for Start with the following error: Access is denied.
I also get a vlc.exe process in Task Manager which just stays there; I have to kill it manually. I cant figure out what I am doing wrong.
2) The second problem is that even if the service does get installed, when I try to visit the page in the browser, I get a 403 Forbidden error. I am logged in as the administrator, so where is the permission error? Is this a problem with the account the service is running under? If so, what account should I use for it?
Thanks.