Ho provato ad usare un AppleScript per riavviare Windows Non sta andando bene, però, come quando l'ho provato la prima volta, una schermata bianca appariva all'avvio e non andava via. Un reset hardware riavviato su Yosemite. Ho salvato questo script come applicazione e nel mio Dock per il riavvio istantaneo, ma è stato deludente.
Ecco lo script:
set adminpass to "MYPASSWORDWENTHERE"
tell application "Finder"
set iconPath to (get name of startup disk) & ":Applications:Utilities:Boot Camp Assistant.app:Contents:Resources:DA.icns" as alias
end tell
set askRestart to display dialog "Restart in Windows?" buttons {"Cancel", "Restart"} default button 1 with icon iconPath
set doRestart to button returned of askRestart
if doRestart is equal to "Cancel" then
quit
end if
if doRestart is equal to "Restart" then
do shell script "bless -mount /Volumes/BOOTCAMP/ -legacy -setBoot -nextonly; shutdown -r now" password adminpass with administrator privileges
end if
Qualcuno può aiutarmi a far funzionare questa cosa?