Open navigation

Remove-TPUser

Description

Syntax

Example 1

Example 2

Example 3



Description

Deletes ThinPrint users and releases their licenses (if they are enabled for at least 28 days, otherwise they are blocked by the expiration date). This does not affect Active Directory.


Syntax

Remove-TPUser -UserIds <Strings>
ParameterDescription
-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.

Remove-TPUser -UserIds user5@ourdomain.local, user6@ourdomain.local
ThinPrint license server's PowerShell cmdlet Remove-TPUser

user5 and user6 deleted


Example 2

$users = $()
$user3 = "ourdomain\user3"
$user4 = "user4@ourdomain.local"
$users = $user3,$user4
Remove-TPUser -UserIds $users

ThinPrint license server's PowerShell cmdlet Remove-TPUser

user3 and user4 deleted per array variable


Example 3

See Example 3 of the Add-TPUser cmdlet.


Did you find it helpful? Yes No

Send feedback
Sorry we couldn't be helpful. Help us improve this article with your feedback.