• Products
    • View all products
    • Free trials
  • Solutions
    • All Solutions
    • All Integrations
  • Resources
    • All Resources
    • Learning Hub
  • Trials
  • Support
    • Support Home
    • By Product
      • All Products
      • Active Roles
      • Authentication Services
      • Cloud Access Manager
      • Defender
      • Identity Manager
      • Password Manager
      • Safeguard
      • Starling Identity Analytics & Risk Intelligence
      • Starling Two-Factor Authentication
      • TPAM Appliance
    • Contact Support
      • Overview
      • Customer Service
      • Licensing Assistance
      • Renewal Assistance
      • Technical Support
    • Download Software
    • Knowledge Base
    • My Account
      • My Products
      • My Service Requests
      • My Licenses
      • My Groups
      • My Profile
    • Policies & Procedures
    • Professional Services
    • Technical Documentation
    • One Identity University
    • User Forums
    • Video Tutorials
  • Partners
    • Overview
    • Partner Circle Log In
    • Become a Partner
    • Find a Partner
    • Partner Community
  • Communities
    • Home
    • Blogs
      • Blogs A to Z
      • One Identity Community
      • AD Account Lifecycle Management
      • Cloud
      • Identity Governance & Administration
      • Privileged Access Management
      • syslog-ng Community
    • Forums
      • All Product Forums
      • Active Roles
      • Identity Manager
      • Password Manager
      • Safeguard
      • Unix Access Management
    • Social Networks
      • Facebook
      • LinkedIn
      • Twitter
      • YouTube
One Identity Community
One Identity Community
  • Site
  • User
  • Site
  • Search
  • User
Active Roles Community
Active Roles Community
Wiki Re-locates users according to a value set in a virtual attribute
  • Forum
  • Ideas
  • Wiki
  • More
  • Cancel
  • New
  • -Active Roles Script Center
    • +Active Roles Script Policy Best Practices
    • Active Roles SDK
    • +C#
    • +JavaScript
    • +PowerShell
    • -VBScript
      • VBScript Library source code
      • -VBScript samples
        • A Managed Unit with users which have not logged on for last 90 days
        • Adjust the case of usernames to title case (first letter of each part of the name)
        • Advanced group creation/provision
        • Advanced shared folder creation
        • Bulk policy incompliance fixing
        • Check unique value of an attribute
        • +Computer management
        • +Exchange management
        • Function that converts regular date into integer8 format
        • Get effective policy info list
        • +Group management
        • How to find a request source in script policy
        • How to send emails based on scripts policy parameters and Virtual Attribute values
        • +Permissions Management
        • Policy incompliance reporting & fixing for specified policy
        • Populate values from a SQL database to an AD Attribute
        • Prevent copying an attribute on user copy
        • Prohibite a permission propagation to AD
        • Prohibite an AD native security editing
        • Read large integer date attributes and display them in date and time readable format
        • Read XML Node text or attribute value
        • Read XML Node with Children into DictionaryObject
        • Standalone script that requests built-in password generation policy
        • -User management
          • Copy additional attributes on user copy
          • Create/Delete local user accounts, basing upon creation/deletion of user accounts in Active Directory
          • Custom script-based PVG-policy with generation rule
          • Custom script-based PVG-policy with possible values list
          • Custom script-based User Logon Name Generation policy
          • Delete Expired Users and Home Directory
          • Detailed debug information on the script policy request object
          • Function to get a DN of a user object using samAccountName
          • Get user account properties after it had been deleted
          • How to enable cross-domain moving of user accounts
          • How to enforce the use of the "Generate Password" function
          • How to prevent Active Roles interaction with file servers on User Home Folder Provision
          • How to prohibit specifying a user password that never expires
          • Last Bad Password Time
          • Manage country codes, names and abbreviations
          • Move a user to some OU upon creation
          • Notify manager when user object is deprovisioned
          • Populate a PVG policy with a possible values list from external source
          • Populate user attributes based on another attribute - e.g. 'Company'
          • Programmatically deprovision a user
          • Re-locates users according to a value set in a virtual attribute
          • Remove characters with an umlaute (öäü) and replace with corresponding characters
          • Restrict who can Disable users while allowing Enable
          • Review for user personal data
          • Script Policy to set account expiration for every created user account
          • Script-based "Last N characters of X attribute"-rule as part of User Logon Name Generation policy rules
          • Set correct country code for user
          • Simplified version of the script-based PVG-policy with a possible values list
          • Stamping manager DN by given manager Id
          • Standalone script to set logon hours of a user account
          • Tree of trust - allow objects to be managed only by their direct or indirect managers
          • User logon name generation without national characters
          • User Provisioning - Home Drive Location and Profile based on UserID
        • Validate moving operations
        • +VBScript: Approval

Re-locates users according to a value set in a virtual attribute

DESCRIPTION

Re-locates users in the TestOU Users container according to the value set in the edsvaLOS-U attribute.


Note This code may use functions from the Active Roles Script Policy Best Practices. Please, follow the link to obtain instructions and code for those functions.


SCRIPT

'*********************************************************************************

' THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND,

' EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE IMPLIED

' WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A PARTICULAR PURPOSE.

'

' IF YOU WANT THIS FUNCTIONALITY TO BE CONDITIONALLY SUPPORTED,

' PLEASE CONTACT ONE IDENTITY PROFESSIONAL SERVICES.

'*********************************************************************************

'**************************************************************

Sub onPostModify(Request)

'**************************************************************

'==============================================================

'Re-locates users in the TestOU Users container according to the

'value set in the edsvaLOS-U attribute

'

'Takes in a parameter list which defines in which OU the user

'object should be placed. Parameter list is in the format:-

'

' LineOfService,OU;LineOfService,OU;LineOfService,OU

'

'

'If the edsvaLOS-U does not match with a LOS in the parameters list

'then it reports the error and stops.

'

'===============================================================

'Change the environment variables here

domainString = "dc=SomeDomain,dc=com"

parentOU = "ou=TestOU,"

'Check that it's a user - quit if not

If Request.Class <> "user" Then Exit Sub

'Check to see if any attributes other than Quick Connect internal

'attributes have changed. If so run the routine otherwise quit.

Dim bQcInternalOnly: bQcInternalOnly = True

For i=0 To Request.PropertyCount-1

If Mid(Request.Item(i).Name,1,Len("edsvaQC3")) <> "edsvaQC3" Then ' a "non-QC-internal" attribute was modified

bQcInternalOnly = False

Exit For

End If

Next

If bQcInternalOnly Then Exit Sub

'Now check to see if the edsvaLOS-U has changed - if not exit

Dim losuChanged: losuChanged = False

For i=0 To Request.PropertyCount-1

If Mid(Request.Item(i).Name,1,Len("edsvaLOS-U")) = "edsvaLOS-U" Then ' the attribute was modified

losuChanged = True

Exit For

End If

Next

If Not losuChanged Then Exit Sub

EventLog.ReportEvent 4, "MoveUser started processing"

'Get some user information

srcObjName = Request.Get("distinguishedName")

srcCN = Request.Get("cn")

srcUserName = Request.Get("samAccountName")

'Get the LOS attribute by first, loading it into the cache so it can be read

Set lUser = GetObject("EDMS://" & srcObjName)

lUser.GetInfoEx Array("edsvaLOS-U"),0

On Error Resume Next

losAttribute = lUser.Get("edsvaLOS-U")

'Check the los attribute is not empty

If losAttribute = "" Then

EventLog.ReportEvent 1, "edsvaLOS-U is empty, MoveUser terminated"

Exit Sub

End If

On Error GoTo 0

'get the parameters from the Policy Object

losList = Policy.Parameters("LOS")

'Check to see if the LOS attribute is valid by matching a value in the parameters list

If losExists(losList, losAttribute) Then

'Move the object

sourceObjectPath = "EDMS://" & srcObjName

destinationObjectOU = "ou=" & losAttribute & ","

'DN of the destination container

destinationContainerPath = "EDMS://" & destinationObjectOU & parentOU & domainString

'Bind to the destination container

'Check to see if the user is in the same OU if so, do not move

currentUserContainer = Right(srcObjName, Len(srcObjName) - Instr(srcObjName, ","))

destinationContCheck = Right(destinationContainerPath, Len(destinationContainerPath) - 7)

If Lcase(currentUserContainer) = Lcase(destinationContCheck ) Then

'Exit because we don't want to move the user if not required

EventLog.ReportEvent 4, "Target container is the same as the source - user not moved"

EventLog.ReportEvent 4, "Script module : MoveUser complete"

Exit Sub

End If

Set ContainerObject=GetObject(destinationContainerPath)

'Move the user

Set NewObject=ContainerObject.MoveHere(sourceObjectPath, vbNullString)

'Commit changes

NewObject.SetInfo

If Err.Number = 0 Then

'Set the DN explicitly

Request.PutEx ADS_PROPERTY_UPDATE, "distinguishedName", "cn=" & srcCN & "," & destinationObjectOU & parentOU & domainString

Request.SetInfo

'Get the source OU from the DN

sourceOuName = Split(srcObjname, ",")

EventLog.Reportevent 0, "User moved successfully from " & Right(sourceOuName(1), Len(sourceOuName(1))-3) & " to " & losAttribute

Else

EventLog.ReportEvent 1, "An error occured = " & err.number & " " & err.description

End If

Else

'Report the problem

EventLog.ReportEvent 1, "The edmsvaLOS-U attribute is not in the parameter list","Current Value :" & Request.Get("edsvaLOS-U")

End If

EventLog.ReportEvent 4, "Script module : MoveUser complete"

End Sub

'***************************************************************

Function losExists(lList, lAttribute)

'***************************************************************

'Checks to see if the value of the LOS attribute exists in the

'parameter list. Returns True if it does, False otherwise.

'Returns the name of the OU to the calling routine.

On Error Resume Next

parameterList = Split(Trim(lList),";")

For Each losParameter In parameterList

EventLog.ReportEvent 1, "losParam = " & losParameter(0)

losParam = Split(losParameter,",")

If lCase(losParam(0)) = lCase(lAttribute) Then

'Returns the OU name

lAttribute = losParam(1)

losExists = True

On Error GoTo 0

Exit Function

Else

losExists = False

End If

Next

On Error GoTo 0

End Function

'***** END OF CODE ***************************************************************

  • Script Center
  • Script Center: VBScript
  • Share
  • History
  • More
  • Cancel
Related
Recommended
  • Company
    • About Us
    • Buy
    • Careers
    • Contact Us
    • News
  • Resources
    • Blogs
    • Customer Stories
    • Documents
    • Events
    • Videos
  • Support
    • Professional Services
    • Renew Support
    • Technical Support
    • One Identity University
    • Support Service
  • Social Networks
    • Facebook
    • Instagram
    • LinkedIn
    • Twitter
    • YouTube
  • © 2025 One Identity LLC. ALL RIGHTS RESERVED.
  • Legal
  • Terms of Use
  • Privacy
  • Community Feedback & Support
  • Cookie Preference Center