- May 21, 2003
- 2,403
- 3
- 81
The ext2 driver installed by Stephan Shrieber's IFS Drives program isn't quite compatible with Win7 yet. You can get it installed and mount ext2 & ext3 partitions with it (provided you have the right inode size on the filesystem) but the mounts do not persist after rebooting like they do with (all) other windows versions.
In the FAQ on his site I was able to find out the shell command I needed to mount them.
where persistent-volume-name is discovered (while the partition is mounted via the GUI) by issuing the command:
...with X being the drive letter.
For fear of a drive letter collision I set out to automate this but couldn't find where windows was doing the drive letter assignment.
I settled for creating a file mountx.cmd with the above mountvol command in it and using windows task scheduler to run it with escalated privileges at startup. It works, but I'm sure thaere is a better way, perhaps in the registry? Any suggestions?
In the FAQ on his site I was able to find out the shell command I needed to mount them.
Code:
mountvol X:\ \\?\Volume"{persistent-volume-name}"
Code:
mountvol X:\ /L
For fear of a drive letter collision I set out to automate this but couldn't find where windows was doing the drive letter assignment.
I settled for creating a file mountx.cmd with the above mountvol command in it and using windows task scheduler to run it with escalated privileges at startup. It works, but I'm sure thaere is a better way, perhaps in the registry? Any suggestions?
