שימוש בכלי העזר לשורת הפקודה kickstart ב-Apple Remote Desktop
ניתן להשתמש ב-kickstart לביצוע פקודות של Apple Remote Desktop, ללא הפעלה מחדש של המחשב המרוחק.
הגדירו את ההעדפות של Apple Remote Desktop באמצעות kickstart. לדוגמה, תוכלו לבצע התקנה, להסיר התקנה, להפעיל, להגדיר ולהפעיל מחדש את הרכיבים של Apple Remote Desktop.
למדו כיצד לשלוט ב-Mac מרוחק באמצעות 'שיתוף מסך' עם כלי העזר לשורת הפקודה kickstart ב-macOS Mojave 10.14 ואילך.
לפני שמתחילים
תוכלו למצוא את הכלי kickstart בכתובת:
/System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Resources/kickstart
הקלידו את הפקודות במאמר זה כשורת טקסט אחת. אם הטקסט גולש תוך כדי הזנתו, זה בסדר. אל תלחצו על המקש Return לפני שהזנתם את הפקודה במלואה.
לקבלת מידע נוסף אודות הפקודה kickstart, השתמשו בדגל -help:
sudo /System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Resources/kickstart -help
פקודות לדוגמה
הפקודות במאמר זה פועלות עם Apple Remote Desktop 3.2 ואילך.
הנה פקודות שבהן תוכלו להשתמש:
הפעלה מחדש של ARD Agent והמסייע:
sudo /System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Resources/kickstart -restart -agent
הפעלת Remote Desktop Sharing, מתן גישה לכל המשתמשים והפעלת הפקודה menu extra:
sudo /System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Resources/kickstart -activate -configure -allowAccessFor -allUsers -privs -all -clientopts -setmenuextra -menuextra yes
הפעלת Remote Desktop Sharing, מתן גישה למשתמשים שצוינו:
sudo /System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Resources/kickstart -activate -configure -allowAccessFor -specifiedUsers
You must use the -configure, -access, and -privs options in a separate command to specify the set of users and their access privileges. For example, this command is for users with the short names "teacher" and “student." It gives them access to observe (but not control) the computer, and to send text messages:sudo /System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Resources/kickstart -configure -users teacher,student -access -on -privs -ControlObserve -ObserveOnly -TextMessages
Unlike other kickstart options, you can’t combine the allowAccessFor options with other kickstart options. You must use it as in the last two samples above. You might have to call kickstart more than once to finish a computer’s setup.הסרת הרשאות גישה למשתמשים שצוינו (student בדוגמה זו):
sudo /System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Resources/kickstart -configure -users student -access -off
השבתת ARD Agent והסרת הרשאות גישה לכל המשתמשים:
sudo /System/Library/CoreServices/RemoteManagement/ARDAgent.app/Contents/Resources/kickstart -deactivate -configure -access -off