Hi all, I created an init script for cron I run Mondays when I reboot my computer. It's just a wrapper for cron-config that calls the latter with a random password: # these privileges are missing on reboot # no luck in searching for solutions as of 8/10/2015 for priv in SeAssignPrimaryTokenPrivilege SeCreateTokenPrivilege SeServiceLogonRight; do if ! editrights -lu cyg_server | grep "$priv" > /dev/null; then echo "Adding $priv..." editrights -au cyg_server "$priv" fi done declare CYG_SERVER_PASSWD CYG_SERVER_PASSWD="$(rstring 12)" #printf "Using password: %s\n" "$(printf "*%.0s" $(seq 1 ${#CYG_SERVER_PASSWD}))" echo "Using password: $CYG_SERVER_PASSWD" cron-config <