La risposta a questa domanda verrà interrotta a un certo momento Come posso spegnere forzatamente il mio Mac in un momento prestabilito? ma non è esattamente quello che hai chiesto, anche se non è cancellabile (beh, non è semplice) e cammina attraverso l'uso di cron.
Puoi anche ottenere la stessa cosa nel pannello di controllo Risparmio energia, facendo clic sul pulsante Pianifica ... .
Per spegnere, dopo un certo tempo , c'è un'applicazione gratuita chiamata Timer di spegnimento che fornisce utilmente un promemoria semitempo .
Infine, ecco un AppleScript non cancellabile, da Un AppleScript per generare un arresto temporizzato
(* how many seconds before we remove the notice? *)
property dialog_timeout : 3
repeat
try
display dialog "In how many minutes must the computer be shutdown?" ¬
default answer ""
set the time_amount to the text returned of the result as integer
if the time_amount is greater than 0 then exit repeat
on error number error_number
if the error_number is -128 then return "user cancelled"
end try
end repeat
if the time_amount is 1 then
set the my_minuten to "minute"
else
set the my_minuten to "minutes"
end if
display dialog "The computer will be shutdown in " & time_amount & " " & ¬
my_minuten & "!" buttons {"Ok"} default button 1 giving up after dialog_timeout
delay time_amount * 60
tell application "Finder" to shut down
Tuttavia, nessuna di queste opzioni mantiene la macchina spenta per un determinato periodo di tempo, quindi purtroppo rispondono solo a metà della domanda, sfortunatamente. Forse account parentali gestiti , come suggerito dalla DG, sono la strada da percorrere ... Vedi OS X Mavericks: Imposta i controlli parentali