คำตอบสำหรับคำถามนี้จะปิดในเวลาใดเวลาหนึ่ง ฉันจะบังคับให้ปิด Mac ในเวลาที่กำหนดได้อย่างไร แต่นั่นไม่ใช่สิ่งที่คุณต้องการถึงแม้ว่ามันจะไม่สามารถยกเลิกได้ (แต่ไม่ใช่อย่างง่ายดาย) และนำคุณผ่านการใช้ cron
คุณสามารถทำสิ่งเดียวกันในแผงควบคุม Energy Saver ได้โดยคลิก กำหนดการ ... ปุ่ม.
เพื่อปิด หลังจากระยะเวลาหนึ่ง มีโปรแกรมฟรีที่เรียกว่า ตั้งเวลาปิดเครื่อง ซึ่งเป็นประโยชน์ให้ ครึ่งแรก การแจ้งเตือน
ในที่สุดนี่คือ AppleScript ที่ไม่สามารถยกเลิกได้ AppleScript เพื่อสร้างการปิดระบบตามกำหนดเวลา
(* 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
อย่างไรก็ตามตัวเลือกเหล่านี้ไม่มีการปิดเครื่องตามเวลาที่กำหนดดังนั้นพวกเขาจึงตอบคำถามของคุณเพียงครึ่งเดียว อาจจะ จัดการบัญชีผู้ปกครอง ตามคำแนะนำของ D.G. เป็นหนทางไป ... ดู OS X Mavericks: ตั้งค่าการควบคุมโดยผู้ปกครอง