ok i´ve got wol working:   start putty login as admin sudo -i cd /usr/local/etc/rc.d vi S99ZZZ_Shutdown.sh paste the commands from the scipt with copy and paste: #!/bin/sh case $1 in start)  if [ -f /var/packages/shutdown_script/DSShutdown.sh ]; then   /var/packages/shutdown_script/DSShutdown.sh &  fi     ;; stop)  if [ -f /var/tmp/shut.down ]; then   rm /var/tmp/shut.down  fi  ifconfig eth0 down     ;; *)     echo "Usage: $0 [start|stop]"     ;; esac then save w
    • Like
    1