Can't install windows service?

So i am trying to change from python windows to windows service for someone i'm configuring plexconnect for ..

Of course PlexConnect was shutdown. Then installed needed program that fits my computer specs from the link in the wiki. Then opened install bat file and then start. On open of any .bat file i have a command prompt (i think) launching for less then half a second then gone .. And it's not working. At least not starting.

What am i doing wrong?

Please show screens of add/remove for Python and win32py (?) so we can check you have the right dependancy.

Was it working when you start it manually?

Please show screens of add/remove for Python and win32py (?) so we can check you have the right dependancy.
Was it working when you start it manually?

Of course it was. I don't understand what screens? You want me to show it's both installed?

Yep

Attached

From the other stuff on to there i am assuming that Python is the 32 bit version but check (can’t see it in that view). Try starting the bat file from a cmd window rather than double clicking it, if you still get the same edit the bat so it has a “pause” at the end and you should see what the error is.

From the other stuff on to there i am assuming that Python is the 32 bit version but check (can't see it in that view). Try starting the bat file from a cmd window rather than double clicking it, if you still get the same edit the bat so it has a "pause" at the end and you should see what the error is.

How do it start in the command prompt?

cd /location/.bat file

and enter?

 (I don't really know windows ;) )

![post-220633-0-80182800-1396662197.png|665x335](upload://fh1pp4GgfLz0Vi1nK4rrM9TUI0c.png)

Look like this error?

Take python out of the example bat files:
 
@echo off
 
set InstallerPath=%~dp0
set PlexConnectPath=%InstallerPath%..\..\
 
python "%PlexConnectPath%PlexConnect_WinService.py" install
 
echo PlexConnect-Service installed
 
So it will look like this and save (test by changing file name:)
 
@echo off
 
set InstallerPath=%~dp0
set PlexConnectPath=%InstallerPath%..\..\
 
"%PlexConnectPath%PlexConnect_WinService.py" install
 
echo PlexConnect-Service installed
 

![post-220633-0-91749200-1396663230.png|672x335](upload://ujIN3tz8YE0Nz9PrLC01YcYtE7E.png)

See if that works for you...

Take python out of the example bat files:
 
@echo off
 
set InstallerPath=%~dp0
set PlexConnectPath=%InstallerPath%..\..\
 
python "%PlexConnectPath%PlexConnect_WinService.py" install
 
echo PlexConnect-Service installed
 
So it will look like this and save (test by changing file name:)
 
@echo off
 
set InstallerPath=%~dp0
set PlexConnectPath=%InstallerPath%..\..\
 
"%PlexConnectPath%PlexConnect_WinService.py" install
 
echo PlexConnect-Service installed
 

attachicon.gifInstall_as_service_OK.png

See if that works for you...

How do i edit that?

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.