We need an regex expression that will take the last four digits of the mobile phone attribute and put in custom attribute. Right now we have a business rule below and it pulls the first four digits and not the last four.
Please advise.
Hello,
You will need to use a PowerShell script for this purpose. To update your Business Rule accordingly:
Launch Adaxes Administration Console.
In the Console Tree, expand the service node.
Navigate to Configuration/Business Rules and select the rule you need.
In the Result Pane on the right, double click the Modify the User action.
Select Run a program or PowerShell script.
Paste the script below into the Script field.
$mobile = $Context.TargetObject.Get("mobile") $mobileFour = $mobile.SubString($mobile.Length - 4) $Context.TargetObject.Put("adm-CustomAttributeText15", $mobileFour) $Context.TargetObject.SetInfo()
Enter a short description.
Click OK and save the changes.
What specific permission is needed in a security role to grant access to enable a user account?
The Adaxes service account is a global admin, and we have already granted audit reporting to look for the lockout events, but I cannot pull the logs via the Adaxes service. I am ... enterprise app to pull this data? Or is there a better way to find this info.
what version of powershell is needed with modern auth and connect to 0365/azure
Currently getting this error when enabling a user for Skype for Business: No cmdlets have been authorized for use by the RBAC role that the user belongs ... minimum required permissions that the Adaxes account needs to manage Skype for Business functionality?
We originally installed Adaxes and assigned the Adaxes Service user to the Domain Admins group. We are now locking down that group and have removed the Adaxes Serivce from ... to do things. What rights does Adaxes Service need in order to administer users?