views:

926

answers:

4

Assume I have access to a SMB server at IP 1.2.3.4, how can I determine the list of available shares?

Windows Explorer can do it when I enter a UNC path \\1.2.3.4\ - but command prompt "dir \\1.2.3.4\" fails!

I've tried the usual FindFirstFile/FindNext calls - which I use successfully to read the files and directories on each share, but they don't work directly on the server root.

Ideally, I need something that works for XP onwards.

Edit: I want to do this programatically, rather than from command line. Redirecting and parsing the output from 'net view 1.2.3.4' would work, but I'm ideally looking for an API for this job.

+4  A: 

net view \\1.2.3.4

Check out http://www.ss64.com/nt/net_share.html

Edit: If you want to do this programmatically, it looks like NetShareEnum would work.

Joe Beda
+1: Thanks, that's useful. I was hoping for an API-based way of doing this. parsing the output of net view would work, but...
Roddy
If you want to see all shares (including hidden ones) then use "net view \\1.2.3.4 /ALL"
Scott Anderson
+5  A: 

According to the docs there's a NetShareEnum and a WNetEnumResource function.

ChrisW
Thanks - exactly what I was looking for.
Roddy
A: 

It appears you can use WMI to get this information. Check this post for some neat PowerShell tutorials that show now to use the Win32_Share WMI object.

Scott Anderson
A: 

Never use WMI (not installed natively)
Use Win32 api to enumerate shares, posted millions of times on google groups( win32)

WMI is there since Windows XP so again, stop making stuff up.
macbirdie