2

Does anybody know how to get the list of locally shared folders with ACLs and export the list to a file?

Ward - Trying Codidact
  • 12,899
  • 28
  • 46
  • 59
Volodymyr Molodets
  • 2,424
  • 9
  • 36
  • 52

1 Answers1

1

You can use Powershell to do this. gwmi -class win32_share will get a list of shares. This guy's script will help you retrieve the permissions.

uSlackr
  • 6,412
  • 21
  • 37
  • Thank you for this. I'll give it a shot. What I've tried is Sharenum from Sysinternals, it seems to be working, but there are some issues in windows server 2003 domain. – Volodymyr Molodets Sep 06 '11 at 14:43