mac_shinobi Posted January 28, 2015 Posted January 28, 2015 Wrong thread. ok ok - just thought I'd put it out there lol
Ben-at-work Posted February 25, 2015 Posted February 25, 2015 We've just started looking at migrating to Yosemite and ran into the Bootpicker issue. I looked into alternatives (Bootrunner, Quickboot) but as we hide the Bootcamp volume from students neither suited our needs as they wouldn't work if a second student then logged into OS X unless they restarted the machine first - Bootpicker bless it's heart always worked regardless of the drive being mounted or not. In the end I wrote an application that meets our requirements which students run from the dock, if anyone's interested I've included the code below: do shell script "diskutil mount /dev/disk0s4" set adminpass to "YOUR LOCAL ADMIN PASSWORD" 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 "Are you sure you want to restart this iMac into Windows?" buttons {"No", "Yes"} default button 1 with icon iconPath set doRestart to button returned of askRestart if doRestart is equal to "No" then do shell script "umount /Volumes/BOOTCAMP" password adminpass with administrator privileges end if if doRestart is equal to "Yes" then do shell script "bless -mount /Volumes/BOOTCAMP/ -legacy -setBoot -nextonly; shutdown -r now" password adminpass with administrator privileges end if Obviously not as nice as Bootpicker as the students have to log in, then launch the app to go into Windows but it works for us.
Ben-at-work Posted October 12, 2015 Posted October 12, 2015 Just testing a version of Bootpicker that works for 10.10+ https://www.nbalonso.com/fixing-bootpicker-for-yosemite/
Ben-at-work Posted December 15, 2015 Posted December 15, 2015 Still works for me, I can attached the DMG if you need it?
ITGeek123 Posted December 15, 2015 Posted December 15, 2015 I'll give it a go at home dude. If it doesn't work at home i'll love to have the dmg please
ITGeek123 Posted April 20, 2016 Posted April 20, 2016 Some reason when I click on the Windows icon. It just crashes and does nothing Anyone else had this issue?
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now