• 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 Move computer account to appropriate OU on joining computer to domain
  • 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
          • Allow only computers be members of a group
          • Move computer account to appropriate OU on joining computer to domain
        • +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
        • Validate moving operations
        • +VBScript: Approval

You are currently reviewing an older revision of this page.

  • History View current version

Move computer account to appropriate OU on joing computer to domain

Back to Computer management

DESCRIPTION

To join computer to domain, you have to logon to the target computer and specify target domain on the Computer Name tab of the System Control Panel ([1]). If computer account was pre-created in appropriate OU, this account will be used. If computer account could not be found in target domain, it will be created in the Computers container.

For computer accounts be in appropriate OUs, with ActiveRoles Server you can skip pre-creation phase and use script policy provided below to automatically move newly joined computers to appropriate OUs.

Using the DirSync control, ActiveRoles Administration Service receives all changes made in AD. As part of this process, Administration Service receives creation of new computer accounts in Computers container. Once such change detected, the script policy provided below moves the computer account to target OU.

There are couple instructions you need to follow to make it work:

Policy Object, containing this script policy, should be linked to the Computers container The "Handle changes from DirSync control" option should be set on the Script Module tab of the script policy entry property sheet

NOTES Administration Service receives changes from one selected DC, typically DC from the site where the Service is running. When joining computer account to domain, computer account in created on the DC, closest to the computer, typically DC from the computer's site. Consequently, for the Service to detect computer account creation, this change should be replicated from one DC to another. This might take a day, depending on your replication topology and schedule.


Note This code may use functions from the ARS 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 MERCHANTBILITY AND/OR FITNESS FOR A PARTICULAR PURPOSE.

'

' IF YOU WANT THIS FUNCTIONALITY TO BE CONDITIONALLY SUPPORTED,

' PLEASE CONTACT QUEST PROFESSIONAL SERVICES.

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

'

' This code is published on the ActiveRoles Script Center:

' http://communities.quest.com/docs/DOC-9991

'

' This code may use functions from the ARS Script Policy Best Practices:

' http://communities.quest.com/docs/DOC-10016

'

' Please, follow the link to obtain instructions and code for those functions.

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

'

' Script name: Move Computer Account After Joining to Domain

' Script version: 1.0.0

'

' Requirements:

' - ActiveRoles Server 5.2.x or later

' - Policy Object is applied to the Computers container in target domain

' - The "Handle changes from DirSync control" option is set on the Script

' Module tab of the script policy entry property sheet

'

' This policy script detects new computer was joined to domain and moves the

' computer account from Computers container to an OU.

' -----------------------------------------------------------------------------

Option Explicit

' This constant defines the target OU name where to move new accounts

Const c_strNewContainerPath = "OU=MyOU,DC=domain,DC=com"

Sub onPostCreate(Request)

'--- Optimization: process only computer account modifications ---

If (LCase(Request.Class) <> "computer") Then Exit Sub

'--- Optimization: process only modifications, received from DC by DirSync ---

If (Request.Parameter("RequestSource") <> EDST_MOD_SOURCE_AD) Then Exit Sub

Dim objNewContainer, objAd

'--- Bind to target container ---

Set objNewContainer = GetObject("EDMS://" & c_strNewContainerPath)

'--- Move computer account to target container ---

Set objAd = objNewContainer.MoveHere(Request.ADsPath, vbNullString)

'--- Apply changes ---

objAd.SetInfo

End Sub

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

COMPATIBILITY

Script compatible with the following version(s): ARS 5.2 or later

Back to Computer management

  • 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