I have a customer asking for a fileystem filter which
needs to attach to any new volumes before any user
interactions. What is the best way to handle this with
removable media on Win2k?
Don Burn
I have a customer asking for a fileystem filter which
needs to attach to any new volumes before any user
interactions. What is the best way to handle this with
removable media on Win2k?
Don Burn
Hi Don,
You must attach the filesystem recognizer
devices:‘\FileSystem\FatRecognizer’, ‘\FileSystem\CdfsRecognizer’,…
When the IRP_MJ_FILE_SYSTEM_CONTROL/IRP_MN_LOAD_FILE_SYSTEM arrives to your
filesystem recognizer filter device, you must attach the real filesystem
device: ‘\Fat’,‘\Cdfs’,…
-Abel.
-----Original Message-----
From: xxxxx@lists.osr.com
[mailto:xxxxx@lists.osr.com]On Behalf Of xxxxx@acm.org
Sent: miércoles, 08 de noviembre de 2000 13:00
To: File Systems Developers
Subject: [ntfsd] Filesystem filters and removable media
I have a customer asking for a fileystem filter which
needs to attach to any new volumes before any user
interactions. What is the best way to handle this with
removable media on Win2k?
Don Burn
You are currently subscribed to ntfsd as: xxxxx@trymedia.com
To unsubscribe send a blank email to $subst(‘Email.Unsub’)
> You must attach the filesystem recognizer
devices:‘\FileSystem\FatRecognizer’, ‘\FileSystem\CdfsRecognizer’,…
Use IoRegisterFsRegistrationChange for this.
Max