Description
Sets the remote management settings for the use of Stratodesk NoTouch Center.
Note: If remote management is enabled with -IsActive, the hub can no longer be configured with its console because the NoTouch Center cyclically overwrites the configuration.
Syntax
Set-TPHubStrato [-IsActive <bool>] [-Server <string>] [-Interval <uint32>] [-Proxy <string>]
Set-TPHubStrato [-Config] <StratoConfig> [-Proxy <string>]
| Parameter | Description |
| -IsActive | enables (1, True) or disables (0, False) the remote configuration using the NoTouch Center |
| -Server | sets the address of the NoTouch Center (hostname, IP address or FQDN), default: tcmgr |
| -Interval | sets the interval for obtaining the configuration from the NoTouch Center (in minutes), default: 60 |
| -Config | variable for the values IsActive, Server and Interval |
| -Proxy | • optional (from firmware version 1.1): proxy server address • can also be specified globally using Set-TPHubProxy |
Example 1
The following example uses the -IsActive parameter to enable remote management.
Set-TPHubStrato -IsActive 1
Example 2
The following example uses the $a variable to enable remote management.
$a = Get-TPHubStrato$a$a.IsActive = 1 Set-TPHubStrato -Config $a Get-TPHubStrato
