This post is more than 5 years old
3 Posts
0
5372
August 27th, 2013 07:00
Enumerate all SMB shares on Isilon
We are preparing a migration from EMC Celerra to EMC Isilon (6.5). Currently the Isilon has been setup and we are trying to see how scripts, which were used with the Celerra, are functioning with the Isilon.
One of the (vb)scripts is used to enumerate SMB shares and their local path, here is a part of the script:
Set ShareServerObject = GetObject("WinNT:// /LANMANSERVER")
For Each ShareObject in ShareServerObject
wscript.echo ShareObject.Name & " = " & ShareObject.Path
Next
This script functions well on the old Celerra but, on the Isilon we receive the error message: "The group name could not be found".
When connecting via Computer Management to the Isilon and then select: "System Tool - Shared Folders - Shares" we see all shares and their local path.
How can we enumerate the shares (on the Isilon) using an automated script?

