G Guest May 16, 2005 #1 Is there a way to find out all the files a specific user owns on a file server?
B barry May 16, 2005 #2 John said: Is there a way to find out all the files a specific user owns on a file server? Click to expand... at a command prompt at the directory in question: dir /q /s | find "username" /i > c:\usernames.log & notepad c:\usernames.log that should be on one line too
John said: Is there a way to find out all the files a specific user owns on a file server? Click to expand... at a command prompt at the directory in question: dir /q /s | find "username" /i > c:\usernames.log & notepad c:\usernames.log that should be on one line too
G Guest May 17, 2005 #3 Is there a switch that will show all the users that have access to a directory and their respective permissions. -Thanks.
Is there a switch that will show all the users that have access to a directory and their respective permissions. -Thanks.
J Jerold Schulman May 17, 2005 #4 Is there a switch that will show all the users that have access to a directory and their respective permissions. -Thanks. Click to expand... CACLS C:\Directory See tip 425 in the 'Tips & Tricks' at http://www.jsifaq.com for how to read the output.
Is there a switch that will show all the users that have access to a directory and their respective permissions. -Thanks. Click to expand... CACLS C:\Directory See tip 425 in the 'Tips & Tricks' at http://www.jsifaq.com for how to read the output.