Deleting business rules
The following code sample deletes a business rule.
[Reflection.Assembly]::LoadWithPartialName("Softerra.Adaxes.Adsi")
# Connect to the Adaxes service
$ns = New-Object "Softerra.Adaxes.Adsi.AdmNamespace"
$service = $ns.GetServiceDirectly("localhost")
# Bind to the business rule
$businessRulesPath = $service.Backend.GetConfigurationContainerPath("BusinessRules")
$businessRulesPathObj = New-Object "Softerra.Adaxes.Adsi.AdsPath" $businessRulesPath
$myRuleAdsPath = $businessRulesPathObj.CreateChildPath("CN=My Rule")
$rule = $service.OpenObject($myRuleAdsPath, $null, $null, 0)
# Delete the business rule
$rule.DeleteObject("ADM_DELETEOBJECTFLAGS_AUTO")
See also
- Managing business rules
- Binding to Adaxes-specific objects
- Managing Adaxes-specific objects
- IADsDeleteOps
- Online script repository