Group: Administrators
Posts: 13K,
Visits: 105K
|
No, the Windows version you use would not make any difference in terms of the command line syntax. And you can make the Windows batch file relatively user-friendly by doing something like this:
@echo off set INQUISITPATH="C:\Program Files\Millisecond Software\Inquisit 5\Inquisit.exe" set SCRIPTPATH="D:\batch.iqx" set /p SID=Enter subject ID: set /p GID=Enter group ID:
start "" /wait %INQUISITPATH% %SCRIPTPATH% -s %SID% -g %GID%
Save that in file with *.bat or *.cmd extension. You can put that file on the Desktop and a mere double-click will prompt for subject and user id and then fire up the script (adjust the paths to the Inquisit executable (INQUISITPATH) and the script (SCRIPTPATH) according to where you have those things stored on your computer).
Also, if you're exclusively working under Windows, Inquisit Lab will in fact *not* remain open if you simply execute the <batch> script by double-clicking it in Explorer, instead of opening it in the Inquisit Lab editor first. (Things are a bit different under OSX due to platform differences).
|