Description
Here you can configure Pull Printing of ezeep Blue. If the ThinPrint Hub (resp. the Personal Printing Release Station) is configured for ezeep Blue (in the Azure cloud), then it works exactly like an ezeep Hub (parameter PpType = 1).
Syntax
Set-TPHubPullPrintingConfiguration -Config [-Proxy ]
Parameter | Description |
-Config | configuration specified by a variable |
| Pull Printing disabled/enabled 0/1 = False/True |
| Pull Printing type 0/1 = ThinPrint/Ezeep |
| print jobs one by one or print all or as long as the card is held to the card reader 0/1/2 = OneByOne/AllAtOnce/PrintWhilePresent |
| password set for the Hub (or Release Station) in the ezeep Blue portal→ Network Printers→ Connectors |
-Proxy | • optional (from firmware version 1.1): proxy server address • can also be specified globally using Set-TPHubProxy |
Example
The following example reads the Pull Printing configuration from the Hub (or Release Station), enables Pull Printing, sets the print mode to print jobs one by one, and reloads the modified configuration.
Get-TPHubPullPrintingConfiguration $config = Get-TPHubPullPrintingConfiguration $config.IsActive = 1 $config.JobHandlingMode = 0 Set-TPHubPullPrintingConfiguration -Config $config Get-TPHubPullPrintingConfiguration