can't write to physical drive in win 7??

Posted by matt on Stack Overflow See other posts from Stack Overflow or by matt
Published on 2010-04-11T07:59:29Z Indexed on 2010/04/11 8:03 UTC
Read the original article Hit count: 432

I wrote a disk utility that allowed you to erase whole physical drives. it uses the windows file api, calling :

destFile = CreateFile("\\.\PhysicalDrive1", GENERIC_WRITE, FILE_SHARE_READ | FILE_SHARE_WRITE, NULL, OPEN_EXISTING,createflags, NULL);

and then just calling WriteFile, and making sure you write in multiples of sectors, i.e. 512 bytes.

this worked fine in the past, on XP, and even on the Win7 RC, all you have to do is make sure you are running it as an administrator.

but now I have retail Win7 professional, it doesn't work anymore! the drives still open fine for writing, but calling WriteFile on the successfully opened Drive now fails!

does anyone know why this might be? could it have something to do with opening it with shared flags? this is always what I have done before, and its worked. could it be that something is now sharing the drive? blocking the writes? is there some way to properly "unmount" A drive, or atleast the partitions on it so that I would have exclusive access to it?
some other tools that used to work don't any more either, but some do, like the WD Diagnostic's erase functionality. and after it has erased the drive, my tool then works on it too! leading me to belive there is some "unmount" process I need to be doing to the drive first, to free up permission to write to it.

Any ideas?

© Stack Overflow or respective owner

Related posts about windows-7

Related posts about physical-drive