I have attachd a fragment of a VBScript below. I am retrieving the Security
Descriptor for a specific file. I know that the Security Descriptor has at
least the properties of owner.domain, owner.name and owner.sid. How do I find
out what other properties are available?????

++++++++++++
Set objWMIService = GetObject("winmgmts:")
Set objFileSecuritySettings = _
objWMIService.Get("Win32_LogicalFileSecuritySetting='" & strFileName & "'")
intRetVal = objFileSecuritySettings.GetSecurityDescriptor(objSD)
intSDL = IsNull(objSD.Owner)
'
WScript.Echo intRetVal & intSDL
If intSDL = "False" Then
SID = objSD.Owner.SID
strsid = Join (SID, ",")
WScript.Echo "Owner: " & objSD.Owner.Domain & "\" & objSD.Owner.Name &
"|" & strsid
Else
WScript.Echo "Couldn't retrieve security descriptor."