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 user5@ourdomain.local, user6@ourdomain.local 
import and activation of user5 and user6
Example 2
$users = $()$user5 = "ourdomain\user5"$user6 = "user6@ourdomain.local"$users = $user5,$user6Add-TPUser -UserIds $users

import and activation of user5 and user6 per array variable