how can get the file server user right list?
Dear , i has a file server, how to export the all the folder rights list ? is it using the powershell to export this list? or just need to buy the 3rd party software? Sonylam sonylam@hotmail.com
June 25th, 2012 2:29am

Hello, the Sysinternals suite contains some great tools about http://technet.microsoft.com/en-us/sysinternals/bb545046Best regards Meinolf Weber MVP, MCP, MCTS Microsoft MVP - Directory Services My Blog: http://msmvps.com/blogs/mweber/ Disclaimer: This posting is provided AS IS with no warranties or guarantees and confers no rights.
Free Windows Admin Tool Kit Click here and download it now
June 25th, 2012 2:46am

Hi Sonylam, Thank you for the post. You could also use icacls command or get-acl powershell command to show the folder rights. icacls D:\folder\* get-acl D:\folder\* | format-list http://technet.microsoft.com/en-us/library/cc753525(WS.10).aspx http://support.microsoft.com/kb/919240 http://technet.microsoft.com/en-us/library/ee176838.aspx If there are more inquiries on this issue, please feel free to let us know. RegardsRick Tan TechNet Community Support
June 26th, 2012 3:13am

Hi Rick, i try to use the get-acl command , get-acl D:\folder\* | format-list this command just can get 1 level sub folder, if i want to check all the sub folder, which string can do that , i saw the detail for get-help get-cal, but i cant find it ! can you help me? sonylam@hotmail.com
Free Windows Admin Tool Kit Click here and download it now
June 27th, 2012 12:38am

Hi, also a good tool to do this is: NTFS Permissions Reporter http://cjwdev.co.uk/Software/NtfsReports/Info.htmlKind regards, Tim MCITP, MCTS http://directoryadmin.blogspot.com This posting is provided 'AS IS' with no warranties or guarantees and confers no rights. "If this thread answered your question, please click on "Mark as Answer"
June 27th, 2012 2:43am

Hi Sonylam, Please use command below: Get-ChildItem D:\folder -recurse | ForEach-Object {Get-Acl $_.FullName} | format-list http://blogs.technet.com/b/heyscriptingguy/archive/2008/04/15/how-can-i-use-windows-powershell-to-determine-the-owner-of-a-file.aspx RegardsRick Tan TechNet Community Support
Free Windows Admin Tool Kit Click here and download it now
June 27th, 2012 3:21am

Hi, use accessenum and shareenum tools from sysinternals tools AccessEnum and Shareenum from Sysinternals will get you the job done http://technet.microsoft.com/en-us/s.../bb545046.aspx You can also export the results as a text file.Thanks and Regards Mohamed
June 27th, 2012 6:26am

This topic is archived. No further replies will be accepted.

Other recent topics Other recent topics