...
Code Block | ||
---|---|---|
| ||
$password = "UserPasswordHere" $md5 = New-Object -TypeName System.Security.Cryptography.MD5CryptoServiceProvider $utf8 = New-Object -TypeName System.Text.UTF8Encoding $hash = [System.BitConverter]::ToString($md5.ComputeHash($utf8.GetBytes($password))) Write-Output($hash) |
Be sure to remove any dashes (-
) from the output.
Info |
---|
Write access to the |
...
The ExcludedTabs
section allows you to exclude one or more tabs from the Local UI
application, or, hide specific channels within a specified tab. If you wish to exclude all channels within a specific tab, enter the TabName
and ensure the ExcludedChannels
array is empty ([]
). If you wish to exclude only specific channels within a tab, then enter the names of the channels to be excluded within the ExcludedChannels
section (“Channel1”, “Channel2”, etc.).
Once the UiService.config
file has been updated, deploy it to the remote agent by uploading via the Gateway UI. You can then install the Local UI by deploying and running the msi package. Once installed, launch the application and fill in the connection details. If a connection cannot be established, the reason should be displayed as part of the connection output.
Detailed debugging of the Local UI
service can be done by inspecting the remote agent log file(s), specifically %programdata%\Connexion.Integrator\logs\Integrator.RemoteAgent.txt
. Debugging of the Local UI application can be done by inspecting the %programdata%\Connexion.Integrator\logs\RemoteAgent.LocalUi.txt
file on the Local UI host.