Enabling and disabling business rules
The following code sample shows how to enable and disable a business rule.
[Reflection.Assembly]::LoadWithPartialName("Softerra.Adaxes.Adsi")
# Connect to the Adaxes service
$admNS = New-Object "Softerra.Adaxes.Adsi.AdmNamespace"
$admService = $admNS.GetServiceDirectly("localhost")
# Bind to the business rule
$businessRulesPath = $admService.Backend.GetConfigurationContainerPath(
"BusinessRules")
$businessRulesPathObj = New-Object "Softerra.Adaxes.Adsi.AdsPath" `
$businessRulesPath
$myRuleAdsPath = $businessRulesPathObj.CreateChildPath( `
"CN=My Rule")
$rule = $admService.OpenObject($myRuleAdsPath, $NULL, $NULL, 0)
# Enable the business rule
$rule.Disabled = $False
$rule.SetInfo()
# Disable the business rule
$rule.Disabled = $True
$rule.SetInfo()
See also
- Managing business rules
- Binding to Adaxes-specific objects
- Managing Adaxes-specific objects
- IADs
- Online script repository