ich auf einem Dualboot-System arbeite und verwendet das folgende Applescript das Startvolume zu setzen:OSX 10.11 El Capitan - Einstellung Startgerät Eigenschaft nicht funktioniert
tell application "Finder" to if not (disk "SoundHD" exists) then do shell script "diskutil mount " & last word of (do shell script "diskutil list | grep 'Apple_HFS SoundHD'")
do shell script "bless -mount \"/Volumes/SoundHD\" -setBoot --nextonly" with administrator privileges
display notification "Next Boot: SoundHD" with title "Neustart"
Seit El Capitan das Skript nicht mehr funktionieren und Ich erhalte die folgende Fehlermeldung im Skript-Editor:
tell application "Finder"
exists disk "SoundHD"
--> true
end tell
tell current application
do shell script "bless -mount \"/Volumes/SoundHD\" -setBoot --nextonly" with administrator privileges
--> error "Could not set boot device property: 0xe00002bc" number 3
Ergebnis:
error "Could not set boot device property: 0xe00002bc" number 3
Gibt es einige neue Änderungen im Befehl bless?
Danke für jede Hilfe.
würde ich Systemintegrität Schutz schuld, aber ich bin nicht sicher, –