π Note: If you have any questions or issues please reach out to our technical team via your Customer Success manager.
If you have any questions or issues please reach out to our technical team via your Customer Success manager.
Joy is bundled with an auto-updater and we would recommend downloading and installing an older version to validate that the automated patch process is working.
Latest Version. (installation will update to this)
For a per-machine installation, execute the file with the following command:
msiexec /i JoyConnect.Installer.[installation_version].msi ALLUSERS=1
Please note that we do not support the use of Administrative Installation Images as they interfere with the automated patch process. We recommend that you download and execute the installer directly on the machine instead.
The patch process requires that the original msi installer is available at the location it was last executed (the windows installer cache is not enough!). We therefore recommend that you copy and execute the installer in a safe place on the user's harddrive. If this is not possible and you have to move/rename/delete the original installation file, it is your responsibility to provide a reliable alternative location, e.g. by specifying a persistent network location using the SOURCELIST attribute."
Sample powershell script for a machine wide installation:
# jcinstallation.ps1 - requires elevated privilleges to run
$msiName = 'JoyConnect.Installer.[installation_version].msi'
$outFile = "$env:SystemDrive\$msiName"
Start-BitsTransfer -Source
https://builds.thejoyapp.com/joyconnect/installers/$msiName -Destination $outFile
msiexec /i $outFile ALLUSERS=1 /q