Pick of the Week - Nov 10 [Show all picks]
Path Finder 5 - A feature-laden Finder replacement
Submit Hint Search The Forums LinksStatsPollsFAQHeadlinesRSS
12,000 hints and counting!

10.4: Use a free utility to easily boot into Windows Apps
I wrote a small OS X utility (free, source available) called BootChamp (16KB download) that simplifies booting into Windows on your Intel Mac.

Instead of using System Preferences to change your startup disk, or holding down Option to select another volume on startup, launch BootChamp while booted in OS X. BootChamp only asks for your password, and does the rest without user input. More info at kainjow.com.

[robg adds: I tried this, and it worked -- and it's definitely easier than restarting and waiting for the list of bootable systems to come up.]
    •    
  • Currently 0.00 / 5
  • 1
  • 2
  • 3
  • 4
  • 5
  (0 votes cast)
 
[9,963 views]  

10.4: Use a free utility to easily boot into Windows | 9 comments | Create New Account
Click here to return to the '10.4: Use a free utility to easily boot into Windows' hint
The following comments are owned by whomever posted them. This site is not responsible for what they say.
10.4: Use a free utility to easily boot into Windows
Authored by: jaguarcy on Wed, Jul 18 2007 at 9:31AM PDT
When I try to run it, it says that it was unable to find a Windows volume. Dunno if any of this matters, but I run my boot camp installation via parallels as well, and I've made the windows partition not mount on boot time so I don't have to see it on the desktop. I tried running the app after mounting the partition as well, but same problem occurred.

As a question, after using this app (assuming it works), what happens when you restart from windows, does OS X still boot as the primary OS? (which would be ideal...)

[ Reply to This | # ]
10.4: Use a free utility to easily boot into Windows
Authored by: jaguarcy on Wed, Jul 18 2007 at 9:44AM PDT
I should really do a bit more homework before posting comments...

I found the answer to my last question, which is BootChamp does NOT change the startup volume... good.

I also think I've found the reason my Windows partition isn't being detected... MacFuse and NTFS-3G?

$ /Applications/BootChamp.app/Contents/MacOS/BootChamp --verbose
2007-07-18 19:42:26.871 BootChamp[3439] Unsupported? hfs
2007-07-18 19:42:26.871 BootChamp[3439] Unsupported? devfs
2007-07-18 19:42:26.871 BootChamp[3439] Unsupported? hfs

The second hfs (or maybe the first, no way of knowing), I assume is my FileVault dir. Which leaves only my Windows partition... devfs??

[ Reply to This | # ]
10.4: Use a free utility to easily boot into Windows
Authored by: kainjow on Wed, Jul 18 2007 at 9:48AM PDT
BootChamp's only been tested on NTFS volumes, and they have to be mounted when the app runs in order for the app to see them.

[ Reply to This | # ]
10.4: Use a free utility to easily boot into Windows
Authored by: jaguarcy on Thu, Jul 19 2007 at 12:40PM PDT
Well, the drive IS formatted NTFS, and I did try running it while the drive was formatted... I'm not sure as to why the report says 'devfs', maybe it's because of ntfs-3g and macfuse?

[ Reply to This | # ]
10.4: Use a free utility to easily boot into Windows
Authored by: jaguarcy on Thu, Jul 19 2007 at 12:53PM PDT
For some reason my windows boot partition does not respond to statfs()... any ideas?

[ Reply to This | # ]
Booting from external HD
Authored by: bobhibson on Wed, Jul 18 2007 at 10:14AM PDT
can the utility boot a Windows partition from an external drive?

[ Reply to This | # ]
Or use quicksilver
Authored by: supamonke on Wed, Jul 18 2007 at 6:03PM PDT
http://www.macinstruct.com/node/129

I use this all the time. Works great.

[ Reply to This | # ]
10.4: Use a free utility to easily boot into Windows
Authored by: jaguarcy on Thu, Jul 19 2007 at 1:46PM PDT
Ok, I finally got it to work using the applescript from the above link (thanks supamonke!)

However the provided applescript did not work for me as-is. I believe there must be something wrong with the handling of ntfs drives on my computer, so trying to bless a mounted ntfs volume would always fail. Plus, my drive is never mounted. I therefore modified the applescript into something more portable and, in my opinion, more accurate. Simply change the first line to match the volume label of your own Windows XP installation, and the second to match the disk partition:

set WinDisk to "Windows XP"
set WinDevice to "disk0s3"
tell application "Finder"
	if disk WinDisk exists then
		eject disk WinDisk
	end if
end tell
do shell script "bless -device /dev/" & WinDevice & " -legacy -setBoot -nextonly" with administrator privileges
do shell script "shutdown -r now" with administrator privileges



[ Reply to This | # ]
10.4: Use a free utility to easily boot into Windows
Authored by: whentlaw on Mon, Jan 14 2008 at 9:45AM PST
I loved until I upgraded to Leopard. Now I can't get past the Windows administrator password screen because my (Bluetooth) keyboard and mouse are not recognized and I can't hit "Enter".

[ Reply to This | # ]