π‘ If you have any questions or issues please reach out to our technical team via your Customer Success manager.
π‘ Joy requires an active connection on a machine within the practice to write-back (after working with S1). To prevent connectivity issues we strongly recommend a machine-level installation rather than per-user unless every user on each machine has Joy installed.
Before users begin interacting with Joy please make sure an ODS code is set within S1 (requires S1 administrator). If this is not set to your ODS code, please let your Customer Success manager know the correct value to identify the practice/PCN.
β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 $outFilemsiexec /i $outFile ALLUSERS=1 /q