Discussion:
Find the users-home-folders from within a driver
(too old to reply)
Viv
2010-05-12 13:56:00 UTC
Permalink
Hi all,

How can I find out from within a driver the paths to all the
home-folders for all users from the system (should work on Win2k, XP,
Vista and Win7)?

I mean how can I get for instance on a Windows Vista, from a driver
(which obviously runs in kernel mode), the folder:
C:\Users or C:\Users\<username>; or on a WinXP the C:\Documents and
Settings or C:\Documents and Settings\<username>?

Thanks,
Viv
Maxim S. Shatskih
2010-05-12 17:26:26 UTC
Permalink
Post by Viv
How can I find out from within a driver the paths to all the
home-folders for all users from the system (should work on Win2k, XP,
Vista and Win7)?
Why do you need this? maybe it is better to get this information in user mode and send it to the driver?

Do not use hardcoded paths, they can be customized.
--
Maxim S. Shatskih
Windows DDK MVP
***@storagecraft.com
http://www.storagecraft.com
Tim Roberts
2010-05-13 03:39:08 UTC
Permalink
Post by Viv
How can I find out from within a driver the paths to all the
home-folders for all users from the system (should work on Win2k, XP,
Vista and Win7)?
I mean how can I get for instance on a Windows Vista, from a driver
C:\Users or C:\Users\<username>; or on a WinXP the C:\Documents and
Settings or C:\Documents and Settings\<username>?
To a great extent, the whole concept of "users" is a user-mode concept.
It's never going to be a good fit to try to do this from the kernel.

Remember that, in many environments, those paths point to network shares,
which a kernel driver cannot easily access.
--
Tim Roberts, ***@probo.com
Providenza & Boekelheide, Inc.
Loading...