Search found 1 match
- Thursday 12 March 2015 22:28
- Forum: Other questions and discussions
- Topic: Shutdown Remote Windows PC
- Replies: 43
- Views: 33951
Re: Shutdown Remote Windows PC
Hello, I'm able to shut down my windows computer from command line by typing net rpc -S 192.168.0.14 -U Admin%password shutdown -t 1 -f I've made a script using nano, it looks like this: #!/bin/bash #Shutdown Computer net rpc -S 192.168.0.14 -U Admin%password shutdown -t 1 -f I've chmod 775 the file ...