ReMOunt

How can I make NTFS remount a volume from a file system filter driver?
Is the next correct?
1.Allocate Irp
2.Major function = IRP_MJ_FILE_SYSTEM_CONTROL
3.Minor function = IRP_MN_MOUNT_VOLUME
4.VPB = TargetDevice->Vpb (Target device is for example \DosDevices\D:\
device)
5.Call TargetDevice

Is there any FSCTL for mount (Windows NT4)?
Is it possible to query the mount(remount) from application?

Thanks
Best
Jack


Get Your Private, Free Email at http://www.hotmail.com

> How can I make NTFS remount a volume from a file system filter driver?

Dismount it. It will then be remounted automatically in the next CreateFile.

Max