Sign up for the ITPro Today newsletter
Stay on top of the IT universe with commentary, news analysis, how-to's, and tips delivered to your inbox daily.
July 8, 2007
Q. How can I find all files for which a user has access in Windows Vista?).
A. The Vista Icacls command with the /findsid parameter can find all files that contain a specific SID in the files Access Control List (ACL), as this example shows:
D:temp>ICACLS *.* /findsid savilltechadministrator /t /cSID Found: test.txt.SID Found: test2.Successfully processed 5 files; Failed processing 0 files
You can also use the fsutil command, as follows:
fsutil file findbysid savilltechjohn d:documents
—John Savill
You May Also Like