El SIP fue el primer problema que he encontrado en Big Sur. Apagarlo parece una mala idea. Así que intenté algo como @Wowfunhappy sugirió pero con la actualización para adaptarse a la nueva ui OS y también añadir algunos funcional adicional. El segundo problema era volúmenes de destino elementos de la lista no tiene acciones. Lo que hace imposible hacer clic en ellos a través de clic o "clic en" funciones tal vez debido a algunas nuevas protecciones adicionales en Big Sur. Hacer click con AST y otros scripts tampoco funciona debido a las nuevas restricciones de MacOS. La única manera que he encontrado es usando Python click(pero esto lleva a un ligero retraso mientras scripts selecciona el volumen de destino).
Así que aquí está una conmutación totalmente automatizada:
property targetVolume : "BOOTCAMP" # find name of required volume inside System Preference > Startup Disk
property passwordValue : "yourSystemPassword" # Can be empty
tell application "System Events"
tell application "System Preferences"
set current pane to pane id "com.apple.preference.startupdisk"
activate
end tell
tell application process "System Preferences"
tell window "Startup Disk"
set volumePosition to {0, 0}
set lockFound to false
# Check if auth required
set authButtonText to "Click the lock to make changes."
if exists button authButtonText then
click button authButtonText
# Wait for auth modal
set unlockButtonText to "Unlock"
repeat
if (exists sheet 1) and (exists button unlockButtonText of sheet 1) then exit repeat
end repeat
# Autofill password if setted
if passwordValue is not equal to "" then
set value of text field 1 of sheet 1 to passwordValue
click button unlockButtonText of sheet 1
end if
# Wait for auth success
repeat
if exists button "Click the lock to prevent further changes." then exit repeat
end repeat
end if
# Wait until loading volumes list
repeat
if exists group 1 of list 1 of scroll area 1 then exit repeat
end repeat
# Click on target volume (posible a slight delay because of shell script executing)
repeat with m in (UI element of list 1 of scroll area 1)
if (value of first static text of m = targetVolume) then
tell static text targetVolume of m
set volumePosition to position
end tell
end if
end repeat
set volumePositionX to item 1 of volumePosition
set volumePositionY to item 2 of volumePosition
my customClick(volumePositionX, volumePositionY)
click button "Restart…"
# Wait for restart modal appears
repeat
if (exists sheet 1) and (exists value of first static text of sheet 1) then exit repeat
end repeat
click button "Restart" of sheet 1
end tell
end tell
end tell
# shell script to make click work on target volume
on customClick(x, y)
do shell script "
/usr/bin/python <<END
import sys
import time
from Quartz.CoreGraphics import *
def mouseEvent(type, posx, posy):
theEvent = CGEventCreateMouseEvent(None, type, (posx,posy), kCGMouseButtonLeft)
CGEventPost(kCGHIDEventTap, theEvent)
def mousemove(posx,posy):
mouseEvent(kCGEventMouseMoved, posx,posy);
def mouseclick(posx,posy):
mouseEvent(kCGEventLeftMouseDown, posx,posy);
mouseEvent(kCGEventLeftMouseUp, posx,posy);
ourEvent = CGEventCreate(None);
currentpos=CGEventGetLocation(ourEvent); # Save current mouse position
mouseclick(" & x & "," & y & ");
mousemove(int(currentpos.x),int(currentpos.y)); # Restore mouse position
END"
end customClick
on simpleEncryption(_str)
set x to id of _str
repeat with c in x
set contents of c to c + 100
end repeat
return string id x
end simpleEncryption
on simpleDecryption(_str)
set x to id of _str
repeat with c in x
set contents of c to c - 100
end repeat
return string id x
end simpleDecryption
Sólo tienes que cambiar dos propiedades targetVolume y passwordValue . La contraseña puede estar vacía y en ese caso puedes proporcionarla manualmente. A continuación, sólo tienes que copiar este script, pegarlo en el script Editor y exportar a través de Archivo -> Exportar -> formato de archivo - Aplicación, seleccione Sólo ejecución -> Guardar. Puedes hacer el mismo proceso para todos los sistemas que tengas, por ejemplo Big Sur 1, Big Sur 2, Bootcamp.
0 votos
¿No está el disco de arranque almacenado en nvram? ¿Puedes modificarlo con el comando nvram?
0 votos
@benwiggy El estado de SIP también se almacena en la nvram. :P Cuando SIP está activado, no puedes cambiar los valores protegidos de la nvram.