Add-TPUser

520 views 0

Description

Imports users from Active Directory (AD) and enables them for ThinPrint.

Syntax

Add-TPUser -UserIds <Strings>

Parameter Description
-UserIds a list of AD users which can contain the following information:

• user account name (UPN)
or
• Security Account Manager name (SAM)
or
• security identifier (SID)

Example 1

Variable values are indicated in orange.

Add-TPUser -UserIds [email protected], [email protected]

 import and activation of user5 and user6

import and activation of user5 and user6

Example 2

$users = $()
$user5 = "ourdomain\user5"
$user6 = "[email protected]"
$users = $user5,$user6
Add-TPUser -UserIds $users

import and activation of user5 and user6 per array variable

import and activation of user5 and user6 per array variable

Previous Page
Next Page

Was this helpful?