Hi all,
Does anyone know how to list NTFS permissions on all shares in a NETAPP vfiler using C# in Moonwalk?
I tried to use NETAPP API but only get the share permissions, can’t find a way to get the NTFS ones.
EDIT
Thanks Sobrique, here’s the C# syntax:
var api = new NaElement("system-cli");
var args = new NaElement("args");
args.AddNewChild("arg", "fsecurity");
args.AddNewChild("arg", "show");
args.AddNewChild("arg", path);
api.AddChildElement(args);
s.InvokeElem(api)