Description
Sets specific properties for a particular ThinPrint user. Specifically:
- the directory where her/his Mobile Session Print jobs are stored
- her/his e-mail address
- the activation for ThinPrint
- the activation for Mobile Session Print
Syntax
Set-TPUserSettings -UserID <String> -EMail <String> -UserEnabled <Boolean> -UserMobilePrintEnabled <Boolean>
Parameter | Description |
-UserID | • user account name (UPN) or • Security Account Manager name (SAM) or • security identifier (SID) |
user’s e-mail address | |
-UserEnabled | enable for ThinPrint |
-UserMobilePrintEnabled | enable for Mobile Session Print |
Example
Enables the Mobile Session Print option for user11 (upper arrow: disabled; lower arrow enabled). Variable values are indicated in orange.
$user11 = Get-TPUserSettings -UserID ourdomain\user11
$user11
Set-TPUserSettings -UserID ourdomain\user11 -EMail $user11.Email -UserEnabled $user11.UserEnabled -UserMobilePrintEnabled 1
$user11 = Get-TPUserSettings -UserID ourdomain\user11
$user11

Mobile Session Print enabled for user11