Hi,
Is there a way to know all file systems and mounted volumes loaded? Without loading at boot time to avoid a system restart when the file system filter is installed.
Thanks.
Hi,
Is there a way to know all file systems and mounted volumes loaded? Without loading at boot time to avoid a system restart when the file system filter is installed.
Thanks.
Ratmil -
Apparently IoRegisterFsRegistrationChange will notify
you immediately of all currently loaded file systems,
even if you call it after they actually loaded. The
technique used in sfilter is to call
IoEnumerateDeviceObjectList for each file system
driver (to find the mounted volumes) from within the
FsRegistrationChange callback routine.
Myk
— Ratmil Torres wrote:
> Hi,
>
> Is there a way to know all file systems and mounted
> volumes loaded? Without loading at boot time to
> avoid a system restart when the file system filter
> is installed.
>
> Thanks.
>
>
>
> —
> You are currently subscribed to ntfsd as:
> xxxxx@yahoo.com
> To unsubscribe send a blank email to
> xxxxx@lists.osr.com
>
It only has this behavior on XP and later. On XP and
later it also does not enumerate RAW devices.
— Myk Willis wrote:
> Ratmil -
>
> Apparently IoRegisterFsRegistrationChange will
> notify
> you immediately of all currently loaded file
> systems,
> even if you call it after they actually loaded. The
> technique used in sfilter is to call
> IoEnumerateDeviceObjectList for each file system
> driver (to find the mounted volumes) from within the
> FsRegistrationChange callback routine.
>
> Myk
>
> — Ratmil Torres wrote:
> > Hi,
> >
> > Is there a way to know all file systems and
> mounted
> > volumes loaded? Without loading at boot time to
> > avoid a system restart when the file system filter
> > is installed.
> >
> > Thanks.
> >
> >
> >
> > —
> > You are currently subscribed to ntfsd as:
> > xxxxx@yahoo.com
> > To unsubscribe send a blank email to
> > xxxxx@lists.osr.com
> >
>
>
>
> —
> You are currently subscribed to ntfsd as:
> xxxxx@yahoo.com
> To unsubscribe send a blank email to
xxxxx@lists.osr.com
__________________________________________________
Do you Yahoo!?
Yahoo! Shopping - Send Flowers for Valentine’s Day
http://shopping.yahoo.com
I searched the internet for this funcion (IoEnumerateDeviceObjectList), I
only found one page.
I guess it is only for XP.
----- Original Message -----
From: “Myk Willis”
To: “File Systems Developers”
Sent: Friday, February 14, 2003 10:40 AM
Subject: [ntfsd] Re: How to know all file systems and mounted volumes
loaded?
> Ratmil -
>
> Apparently IoRegisterFsRegistrationChange will notify
> you immediately of all currently loaded file systems,
> even if you call it after they actually loaded. The
> technique used in sfilter is to call
> IoEnumerateDeviceObjectList for each file system
> driver (to find the mounted volumes) from within the
> FsRegistrationChange callback routine.
>
> Myk
>
> — Ratmil Torres wrote:
> > Hi,
> >
> > Is there a way to know all file systems and mounted
> > volumes loaded? Without loading at boot time to
> > avoid a system restart when the file system filter
> > is installed.
> >
> > Thanks.
> >
> >
> >
> > —
> > You are currently subscribed to ntfsd as:
> > xxxxx@yahoo.com
> > To unsubscribe send a blank email to
> > xxxxx@lists.osr.com
> >
>
>
>
> —
> You are currently subscribed to ntfsd as: xxxxx@seg.inf.cu
> To unsubscribe send a blank email to xxxxx@lists.osr.com
>
How to enumerate all mounted devices.
I was doing loop starting from “DriverObject->DeviceObject” and then moving
through “NextDeviceObject” but I was attaching some devices I don’t want,
like LanmanDatagramReceiver. How could I enumerate only mounted devices?
Thanks.
----- Original Message -----
From: “Ratmil Torres”
To: “File Systems Developers”
Sent: Friday, February 14, 2003 2:36 PM
Subject: [ntfsd] Re: How to know all file systems and mounted volumes
loaded?
> I searched the internet for this funcion (IoEnumerateDeviceObjectList), I
> only found one page.
> I guess it is only for XP.
> ----- Original Message -----
> From: “Myk Willis”
> To: “File Systems Developers”
> Sent: Friday, February 14, 2003 10:40 AM
> Subject: [ntfsd] Re: How to know all file systems and mounted volumes
> loaded?
>
>
> > Ratmil -
> >
> > Apparently IoRegisterFsRegistrationChange will notify
> > you immediately of all currently loaded file systems,
> > even if you call it after they actually loaded. The
> > technique used in sfilter is to call
> > IoEnumerateDeviceObjectList for each file system
> > driver (to find the mounted volumes) from within the
> > FsRegistrationChange callback routine.
> >
> > Myk
> >
> > — Ratmil Torres wrote:
> > > Hi,
> > >
> > > Is there a way to know all file systems and mounted
> > > volumes loaded? Without loading at boot time to
> > > avoid a system restart when the file system filter
> > > is installed.
> > >
> > > Thanks.
> > >
> > >
> > >
> > > —
> > > You are currently subscribed to ntfsd as:
> > > xxxxx@yahoo.com
> > > To unsubscribe send a blank email to
> > > xxxxx@lists.osr.com
> > >
> >
> >
> >
> > —
> > You are currently subscribed to ntfsd as: xxxxx@seg.inf.cu
> > To unsubscribe send a blank email to xxxxx@lists.osr.com
> >
>
>
>
> —
> You are currently subscribed to ntfsd as: xxxxx@seg.inf.cu
> To unsubscribe send a blank email to xxxxx@lists.osr.com
>