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) |
Example 1
Variable values are indicated in orange.
Add-TPUser -UserIds [email protected],
[email protected]
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