I recently partitioned an 8GB card to boot on my SX20IS (no firmware update option, on the camera) but ran into problems when sdminste.exe would not swap partitions as it’s supposed to (OK, so it’s probably my card reader). I thought I was stuck with an 8GB card that could only use the 2MB partition until I found information referring to the DISKPART command. So here is what I found if it is of use to anyone else with the same problem.
Using the Windows command line (in C:\WINDOWS\SYSTEM32) type DISKPART which will start the utility. The commands to swap partitions are:
List DISK
SEL DISK x (where x is the disk number of the USB drive)
LIS PAR
SEL PAR y (where y is the partition of the USB drive you want to make active)
ACT
DET PAR
EXIT
From what I have read, it should work as a script (using DISKPART SWAPPART.txt – text as above), but doesn’t, so I have to type the commands in each time I want to swap partitions. Can anyone help me with this?