This script outlines how to silently deploy Jamovi via command prompt. For the purpose of this tutorial the install file will be located in C:\Jamovi. You will also need to download the modules to C:\Jamovi\modules.
To deploy this script open Notepad and copy this script into it. Save it as a .cmd file then Run as Administrator. The script will open Command Prompt and begin installing.
@ECHO off
TITLE Install Jamovi
CLS
ECHO.
ECHO Installing Jamovi…
start “Jamovi” /wait C:\Jamovi\jamovi-%version%-win64.exe /S
ECHO.
ECHO Copying over Jamovi Modules…
robocopy “C:\Jamovi\modules” “C:\Users\Default\AppData\Roaming\jamovi\modules” /E /njh /njs /ndl /nc /ns /nfl
