Windows System Software -- Consulting, Training, Development -- Unique Expertise, Guaranteed Results
The free OSR Learning Library has more than 50 articles on a wide variety of topics about writing and debugging device drivers and Minifilters. From introductory level to advanced. All the articles have been recently reviewed and updated, and are written using the clear and definitive style you've come to expect from OSR over the years.
Check out The OSR Learning Library at: https://www.osr.com/osr-learning-library/
Hi. I have a name provider, that is sitting below FsLogix.
It appears that it when they are both active, user mode calls GetLongPathName, for folders inside C:\Users, that it does not without either of the filters.
Does anyone have an insight why this could be? Note that I am not interested in what GLPN does, rather how come it is called. Som Name provider flags? It is not called directly from the app, but from within some Windows DLLs
Regards, Dejan.
Upcoming OSR Seminars | ||
---|---|---|
OSR has suspended in-person seminars due to the Covid-19 outbreak. But, don't miss your training! Attend via the internet instead! | ||
Kernel Debugging | 13-17 May 2024 | Live, Online |
Developing Minifilters | 1-5 Apr 2024 | Live, Online |
Internals & Software Drivers | 11-15 Mar 2024 | Live, Online |
Writing WDF Drivers | 26 Feb - 1 Mar 2024 | Live, Online |
Comments
Its been too long since I fought that fight but I would be looking for another file system device. I have a vague memory that the DLLs open some funky file name on an equally funky device and a minifilter issues a STATUS_REPARSE up to the real files.
There is no alternative.
Can someone from MS confirm that FsLogix does not actually store files in
C:\Users on the disk but fully virtualizes them from a container that in
another folder? This would be sufficient. Installing FsLogix in a VM to
check that is quite time consuming and likely to fail along the way.
Regards, Dejan.
Broadly speaking FsLogix mounts a VHD as the user's home directory
-scott
OSR
I figured the issue. It was so simple, that I did not even think soneone
would make such code (third party app was the issue).