Description
Modifies the Hostname and the Comments and Location description fields of the ThinPrint Hub (see Network)
Syntax
Set-TPHubNetworkDesc -Hostname <string> [-Comments <string>] [-Location <string>] -Config <variable> [-Proxy <string>]| Parameter | Description |
| -Hostname | writes the Hostname of the ThinPrint Hub (alternative to -Config) |
| -Comments | writes in the Comments field (optional with -Hostname) |
| -Location | writes in the Location field (optional with -Hostname) |
| -Config | Hostname specified through variable, with optional Comments and/or Location (alternative to -Hostname) |
| -Proxy | • optional (from firmware version 1.1): proxy server address • can also be specified globally using Set-TPHubProxy |
Example
$a = Get-TPHubNetworkDesc $a $b = "ThinPrint Hub" $c = "Berlin" $a.Comments = $b $a.Location = $c Set-TPHubNetworkDesc -Config $a or $a | Set-TPHubNetworkDesc Get-TPHubNetworkDesc
