Export permission to excel/csv from AD?
-
miércoles, 27 de junio de 2012 3:50
Dear All,
Is it possible to export file access right of a folder, sub-folder and file on that server from AD?
For example:
Tom,
\\dataserver\tom\ (read,right...etc)
\\dataserver\tom\abc.txt (read,right...etc)
Todas las respuestas
-
miércoles, 27 de junio de 2012 5:08Moderador
You can try Get-Acl powershell Cmdlet
http://technet.microsoft.com/en-us/library/ee176838.aspx
Also, icals can be used to get the ACL list, pls refer the article below for icals usage
http://support.microsoft.com/kb/919240
Press any key... What the ... Where's any key ?
This posting is provided "AS IS" with no warranties or guarantees and confers no rights.
About Me ?- Propuesto como respuesta Andy QiMicrosoft Contingent Staff, Moderator jueves, 28 de junio de 2012 2:07
- Marcado como respuesta Andy QiMicrosoft Contingent Staff, Moderator martes, 03 de julio de 2012 9:44
-
miércoles, 27 de junio de 2012 6:42
Hi,
also a good tool to do this is:
NTFS Permissions Reporter
http://cjwdev.co.uk/Software/NtfsReports/Info.html
Kind regards,
Tim
MCITP, MCTS
http://directoryadmin.blogspot.comThis 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"
-
miércoles, 27 de junio de 2012 10:15
Try AccessEnum and Shareenum from Sysinternals. You can save it as a text file but not as excel/csv.
To download, please go to this link. http://technet.microsoft.com/en-us/s.../bb545046.aspx
Thanks and Regards Mohamed
- Editado shanferouze miércoles, 27 de junio de 2012 10:18
- Propuesto como respuesta Andy QiMicrosoft Contingent Staff, Moderator jueves, 28 de junio de 2012 2:07
- Marcado como respuesta Andy QiMicrosoft Contingent Staff, Moderator martes, 03 de julio de 2012 9:44
-
jueves, 28 de junio de 2012 2:15Moderador
Hi,
I agree with Santosh, we could try to use Get-Acl command line retrieve the security descriptor for a folder. If you want to export to an excel or csv file, I suggest we try to refer to the following threads for detailed command.
Powershell - Export permissions for folder and share?
How can I combine one-liners (Import-csv, Get-acl, export-csv)
Regards,
Andy
- Marcado como respuesta Andy QiMicrosoft Contingent Staff, Moderator martes, 03 de julio de 2012 9:44
-
jueves, 28 de junio de 2012 6:04
Can we check sub folder list also?You can try Get-Acl powershell Cmdlet
http://technet.microsoft.com/en-us/library/ee176838.aspx
Also, icals can be used to get the ACL list, pls refer the article below for icals usage
http://support.microsoft.com/kb/919240
Press any key... What the ... Where's any key ?
This posting is provided "AS IS" with no warranties or guarantees and confers no rights.
About Me ? -
jueves, 28 de junio de 2012 6:05
This is difficult to use,it only show current user login which folder,but there is a lot of subfolder has now show to me...Try AccessEnum and Shareenum from Sysinternals. You can save it as a text file but not as excel/csv.
To download, please go to this link. http://technet.microsoft.com/en-us/s.../bb545046.aspx
Thanks and Regards Mohamed
-
jueves, 28 de junio de 2012 6:25Moderador
Can we check sub folder list also?
Here is the reply from Rick Tan from similar discussion
Please use command below:
Get-ChildItem D:\folder -recurse | ForEach-Object {Get-Acl $_.FullName} | format-list
Press any key... What the ... Where's any key ?
This posting is provided "AS IS" with no warranties or guarantees and confers no rights.
About Me ?

