-
Hello, I've configured the plugin in homebridge which is installed on a docker container, and I can turn on the PC flawlessly, the problem comes when I try to shut it down. I've tested the command "net rpc shutdown --ipaddress 192.168.1.36 --user myuser%mypass" on the docker host server and it works, but when I set it up on the plugin I get the typical error Any additional config required? Remember I'm running Homebridge inside a docker container Thanks |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
I just found that when installed on a container there's a file called startup.sh so it only requires to add
So everytime the container starts it will add the required samba services to interact with a Windows PC |
Beta Was this translation helpful? Give feedback.
I just found that when installed on a container there's a file called startup.sh so it only requires to add
apt-get update && apt-get install -y samba-common
So everytime the container starts it will add the required samba services to interact with a Windows PC