Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Home / Identity Administration / Computers / Current: Creating Computers

EmpowerID allows you to manage the computer objects in your connected directories, including new computer accounts in those directories. This topic demonstrates how to create new computer accounts in Active Directory and is divided into the following activities:

.


Info

The EmpowerID workflow used to create computer accounts is the ProvisionComputer workflow. To run the workflow, users need to have the Initiator Access Level for it.

...


createcomputer

To create new computers accounts in EmpowerID

From
  1. In the Navigation Sidebar of the EmpowerID Web interface,
navigate to the Computer management page by expanding
  1. expand Resources and
clicking
  1. click Computers.
  2. From the Actions pane of the Computer management page, click the Create Computer action.
Image Removed


  1. Image Added

  2. In the Create Computer form that appears, do the following:
    1. Type a name in the Name field. This field is required.
    2. Optionally, type a display name and description for the computer in the Display Name and Description fields, respectively.
    3. Optionally, type the operating system and DNS host name for the computer in the Operating System and DNS Host Name fields, respectively.

      Image Added

    4. Click Submit.
  3. In the Creation Location Selection lookup that appears, search for and select the account store for the computer and then select the OU from the Computer's Location tree.
  4. Click Submit.
Image Removed


  1. Image Added

  2. Click OK to close the Operation Execution Summary.
Anchorverifycomputerverifycomputer

To verify the new computer

Anchoradministrative-proceduresadministrative-proceduresAdministrative Procedures:
  1. On a server with the Active Directory PowerShell Module, run the below PowerShell cmdlet. The cmdlet returns all computers created today.

Related Topics


  1. Code Block
    languagepowershell
    themeEmacs
    $When = ((Get-Date).AddDays(0)).Date
    Get-ADComputer -Filter {whenCreated -ge $When} -Properties whenCreated


  2. You should see a record for the computer.

    Image Added