Description
Modifies the ThinPrint Client configuration (see ThinPrint)
Syntax
Set-TPHubThinPrintConfig -Port <uint16> [-BandwidthControl <uint32>] -Config <variable> [-Proxy <string>]
Parameter | Description |
-Port | changes the TCP port of the ThinPrint Client (alternative to -Config) |
-EnableBandwidthControl | True = parameter -BandwidthControl enabled False = parameter -BandwidthControl disabled |
-BandwidthControl | modifies the bandwidth setting for the ThinPrint Client (optional with -Port,) |
-Config | ThinPrint Client configuration defined through variable (alternative to -Port) |
-Proxy | • optional (from firmware version 1.1): proxy server address • can also be specified globally using Set-TPHubProxy |
Example
$a = Get-TPHubThinPrintConfig $a $b = 4009 $c = $True $d = 1000 $a.Port = $b $a.EnableBandwidthControl = $c $a.BandwidthControl = $d Set-TPHubThinPrintConfig -Config $a or $a | Set-TPHubThinPrintConfig Get-TPHubThinPrintConfig
The result in the web console is displayed in the following screenshot.