Page 1 of 1

Shut Down PC

PostPosted: Wed Oct 12, 2011 2:53 am
by Lofi
my server and my tv are in different rooms. so when i finish watching a movie, i always have to go to the other room and shut down the server manually. it would be superawesome if i could shut down the pc via the remote control of my tv. serviio has so many menus, another one wouldn't hurt for this feature :D

Re: Shut Down PC

PostPosted: Wed Oct 12, 2011 6:05 am
by Cerberus
nope zip has said he wont be adding this.

Re: Shut Down PC

PostPosted: Wed Oct 12, 2011 4:56 pm
by Lofi
thanks for the reply! is there some way that i could do this myself? eg via plugin?

Re: Shut Down PC

PostPosted: Wed Oct 12, 2011 5:16 pm
by Cerberus
Lofi wrote:thanks for the reply! is there some way that i could do this myself? eg via plugin?


nope as serviio is closed source.

Re: Shut Down PC

PostPosted: Wed Oct 12, 2011 7:40 pm
by moltra
You could probably find a third party program that is not related to serviio to do this. Do a google search and you might find one.

Re: Shut Down PC

PostPosted: Thu Oct 13, 2011 7:50 am
by Illico
moltra wrote:You could probably find a third party program that is not related to serviio to do this. Do a google search and you might find one.

Yes in fact for example PS3 Media Server add a virtual folder that include somes tips like:

For windows:
POWEROFF: runtime.exec("ShutDown /s /f");
RESTART: runtime.exec("ShutDown /r /f");
HIBERNATE: runtime.exec("ShutDown /h");

For Linux:
POWEROFF: runtime.exec("shutdown -h now");
RESTART: runtime.exec("shutdown -r now");
HIBERNATE: runtime.exec("sudo hibernate-ram --force");

For MAC ??