Hi,
Here is my problem…
How to create/delete volume mount points from
storage filter driver for Win2K?
I tried with IOCTL_MOUNTMGR_CREATE_POINT.
This is pretty working for assigning drive letters. But no idea
whether it works for creating volume mount points also.
Are there any other IOCTLs to perform this operation?
Thanks in advance,
Raju.
Raju,
you wrote on Friday, July 11, 2003, 09:38:58:
RB> I tried with IOCTL_MOUNTMGR_CREATE_POINT. This is pretty working for
RB> assigning drive letters. But no idea whether it works for creating
RB> volume mount points also.
Volume mount points are created using FSCTL_SET_REPARSE_POINT.
Ralf.
Ralf,
Thanks a lot for your quick reply.
Volume mount points are created using FSCTL_SET_REPARSE_POINT.
Can i use this FSCTL from storage filter driver which is layered
below file system drivers?
Regards,
Raju.
-----Original Message-----
From: xxxxx@lists.osr.com
[mailto:xxxxx@lists.osr.com] On Behalf Of Ralf Buschmann
Sent: Friday, July 11, 2003 4:59 PM
To: NT Developers Interest List
Subject: [ntdev] Re: Create/Delete Mount Points
Raju,
you wrote on Friday, July 11, 2003, 09:38:58:
RB> I tried with IOCTL_MOUNTMGR_CREATE_POINT. This is pretty
working for
RB> assigning drive letters. But no idea whether it works for
creating
RB> volume mount points also.
Volume mount points are created using FSCTL_SET_REPARSE_POINT.
Ralf.
You are currently subscribed to ntdev as:
xxxxx@pst.fujitsu.com To unsubscribe send a blank email to
xxxxx@lists.osr.com
> How to create/delete volume mount points from
storage filter driver for Win2K?
First of all, there is a “suggested link name” facility, you can
employ it.
Second - write an auxiliary user app.
Max
Raju,
you wrote on Friday, July 11, 2003, 10:03:29:
> Volume mount points are created using FSCTL_SET_REPARSE_POINT.
RB> Can i use this FSCTL from storage filter driver which is layered
RB> below file system drivers?
I can't tell you, sorry. But I have to agree with Maxim, creating mount
points and drive letters should be done from an user mode application.
Ralf.