Enumerating network shares with NetBIOS
- by Karrax
Hello,
I have a case where I need to find all connectable shares on my network, and preferably as much information about the share possible. I could do this manually but its quite a big network and it would be too slow.
If I did it manually Im guessing I would do something like
net view
net use //hostname
<browse it manually>
This would however not give me hidden shares so its not a viable option.
Does anyone know of a tool which can help me out in this case? I already tried Sysinternals ShareEnum but it did not work properly. It did a half decent job, but it gave me access denied on tons of shares that was actually open.
Any tips in how I can script this is also appriciated.
Thank you