IADsSecurityUtility::SetSecurityDescriptor method (iads.h)
The SetSecurityDescriptor method sets the security descriptor for the specified file, file share, or registry key.
Syntax
HRESULT SetSecurityDescriptor(
[in] VARIANT varPath,
[in] long lPathFormat,
[in] VARIANT varData,
[in] long lDataFormat
);
Parameters
[in] varPath
A VARIANT string that contains the path of the object to set the security descriptor for. Possible values are listed in the following list.
File
A valid file path syntax. For example: "c:\specs\public\adxml.doc" or "\adsi\public\dsclient.exe".
File share
A valid file path syntax for a file share. For example: "\adsi\public".
Registry key
A valid registry syntax. For example, "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\ADs".
[in] lPathFormat
Contains one of the ADS_PATHTYPE_ENUM values which specifies the format of the varPath parameter.
[in] varData
A VARIANT that contains the new security descriptor. The format of the security descriptor is specified by the lDataFormat parameter.
[in] lDataFormat
Contains one of the ADS_SD_FORMAT_ENUM values which specifies the format of the security descriptor contained in the VarData parameter. The following list identifies the possible values for this parameter and the format of the VarData parameter.
Return value
Returns S_OK if successful or a COM or Win32 error code otherwise. Possible error codes are listed in the following list.
Remarks
Access control entries must appear in the following order in a security descriptor's access control list:
- Access-denied ACEs that apply to the object itself
- Access-denied ACEs that apply to a child of the object, such as a property set or property
- Access-allowed ACEs that apply to the object itself
- Access-allowed ACEs that apply to a child of the object, such as a property set or property
- All inherited ACEs
Examples
The following code example shows how to set a security descriptor for a file.
Dim dacl as IADsAccessControlList
Dim sd as IADsSecurityDescriptor
Dim newAce as New AccessControlEntry
Dim sdUtil as New ADsSecurityUtility
Set sd = sdUtil.GetSecurityDescriptor("c:\specs\adsixml.doc", ADS_PATH_FILE, ADS_SD_FORMAT_IID )
Set dacl = sd.DiscretionaryAcl
' Add a new ACE for Jeff Smith.
newAce.Trustee = "Fabrikam\jeffsmith"
newAce.AccessMask = ADS_RIGHT_GENERIC_READ Or ADS_RIGHT_GENERIC_EXECUTE
newAce.AceType = ADS_ACETYPE_ACCESS_ALLOWED
dacl.AddAce newAce
sd.DiscretionaryAcl = dacl
sdUtil.SetSecurityDescriptor "c:\specs\adsixml.doc", ADS_PATH_FILE, sd, ADS_SD_FORMAT_IID
Cleanup:
If (Err.Number<>0) Then
MsgBox("An error has occurred. " & Err.Number)
End If
Set dacl = Nothing
Set sd = Nothing
Set newAce = Nothing
Set sdUtil = Nothing
Requirements
Requirement | Value |
---|---|
Minimum supported client | Windows Vista |
Minimum supported server | Windows Server 2008 |
Target Platform | Windows |
Header | iads.h |
DLL | Activeds.dll |