Registration by Command Line
To register an installation of the conneQt® Toolbar on a PC via the Windows command-line you must have Local Administrator rights within Windows on the PC, and have a registration key available (see Registration).
Open a command-line window with Administrator rights, navigate to the installation directory (C:\Program Files (x86)\Quicksilva\conneQt Toolbar), then run the following command, replacing the placeholder data with your registration key values as required:
Qxlva.Toolbar.Client.UserInterface.exe /register /key1="<REG-KEY-PART-1>" /key2="<REG-KEY-PART-2>" /organisationCode="<REG-KEY-ORG-CODE>"
Example registration key data:
- key part 1 - QWERTYU
- key part 2 - ASDFGHJKL
- organisation code - My Test Org
The following command-line input would register the conneQt® Toolbar on the current Windows PC:
"C:\Program Files (x86)\Quicksilva\conneQt Toolbar\Qxlva.Toolbar.Client.UserInterface.exe" /register /key1="QWERTYU" /key2="ASDFGHJKL" /organisationCode="My Test Org"
The command-line output will return successfully (return code 0), or will display an error if registration failed (return code not 0).
PowerShell
To run the installation via PowerShell instead of the command line, use the following script:
Start-Process "C:\Program Files (x86)\Quicksilva\conneQt Toolbar\Qxlva.Toolbar.Client.UserInterface.exe" -ArgumentList "/register","/key1=<REG-KEY-PART-1>","/key2=<REG-KEY-PART-2>","/organisationCode=<REG-KEY-ORG-CODE>" -Wait
Remove the -Wait flag if you don’t need confirmation of process completion.
Note
Run the PowerShell script as an Administrator on the Windows PC.