Description
Removes a printer from the ThinPrint Client (see Printers)
Syntax
Remove-TPHubPrinter -Id <uint16> -Name <string> -Printer <variable> [-Proxy <string>]
Parameter | Description |
-ID | deletes the printer with this ID (alternative to -Name and -Printer) |
-Name | deletes the printer with this name (alternative to -Id and -Printer) |
-Printer | deletes printers defined by variable (alternative to -Id and -Name) |
-Proxy | • optional (from firmware version 1.1): proxy server address • can also be specified globally using Set-TPHubProxy |
Example 1
Remove-TPHubPrinter -Id 3
Example 2
$a = Get-TPHubPrinter -Id 3 $a Remove-TPHubPrinter -Printer $a or $a | Remove-TPHubPrinter