I have a need to find ALL files on my hard drive (in the C: partition), regardless of permissions. (Windows XP Pro, using C#)
In an earlier question, I was told:
The "C:\System Volume Inforamtion" folder cannot be viewed because it is assigned only to the SYSTEM user. In order to see inside of it you need to take ownership of it. However, this is not recommended for security reasons. – Alex Mendez
I've worked with Windows for years, and this is the first time that I have heard about a SYSTEM user (which explains many frustrations I have had in the past). I had assumed that the "Administrator" was similar to the "root" user in UNIX, that has access to everything.
In Windows, is there an ultimate user that owns EVERYTHING?
If so, who is that user?
If so, how do I run my C# program as that user so I can see all the files?
If not, is there some other method? (Other programs do it.)