Millisecond Forums

batch script completes without running files

https://forums.millisecond.com/Topic36836.aspx

By achen - 1/21/2025

Hi,

I have a batch script in Inquisit 7 Lab, and when I run it, it immediately shows the "This session is complete" page without running any of my scripts, but there are no errors. Any idea how to fix it?

<batch A>
/ subjects = (1 of 4)
/ groupassignment = subjectnumber
/ file = "IAA.iqx"
/ file = "RKAO.iqx"
/ file = "memory.iqx"
/ file = "RKAE.iqx"
/ file = "AUT.iqx"
/ file = "RAT.iqx"
/ file = "PF.iqx"
/ file = "SF.iqx"
/ file = "RF.iqx"
</batch>

<batch implicit_B>
/ subjects = (2 of 4)
/ groupassignment = subjectnumber
/ file = "IAB.iqx"
/ file = "RKAO.iqx"
/ file = "memory.iqx"
/ file = "RKAE.iqx"
/ file = "AUT.iqx"
/ file = "RAT.iqx"
/ file = "PF.iqx"
/ file = "SF.iqx"
/ file = "RF.iqx"
</batch>

<batch explicit_A>
/ subjects = (3 of 4)
/ groupassignment = subjectnumber
/ file = "EAA.iqx"
/ file = "RKAO.iqx"
/ file = "memory.iqx"
/ file = "RKAE.iqx"
/ file = "AUT.iqx"
/ file = "RAT.iqx"
/ file = "PF.iqx"
/ file = "SF.iqx"
/ file = "RF.iqx"
</batch>

<batch explicit_B>
/ subjects = (4 of 4)
/ groupassignment = subjectnumber
/ file = "EAB.iqx"
/ file = "RKAO.iqx"
/ file = "memory.iqx"
/ file = "RKAE.iqx"
/ file = "AUT.iqx"
/ file = "RAT.iqx"
/ file = "PF.iqx"
/ file = "SF.iqx"
/ file = "RF.iqx"
</batch>
By Dave - 1/21/2025

achen - 1/21/2025
Hi,

I have a batch script in Inquisit 7 Lab, and when I run it, it immediately shows the "This session is complete" page without running any of my scripts, but there are no errors. Any idea how to fix it?

<batch A>
/ subjects = (1 of 4)
/ groupassignment = subjectnumber
/ file = "IAA.iqx"
/ file = "RKAO.iqx"
/ file = "memory.iqx"
/ file = "RKAE.iqx"
/ file = "AUT.iqx"
/ file = "RAT.iqx"
/ file = "PF.iqx"
/ file = "SF.iqx"
/ file = "RF.iqx"
</batch>

<batch implicit_B>
/ subjects = (2 of 4)
/ groupassignment = subjectnumber
/ file = "IAB.iqx"
/ file = "RKAO.iqx"
/ file = "memory.iqx"
/ file = "RKAE.iqx"
/ file = "AUT.iqx"
/ file = "RAT.iqx"
/ file = "PF.iqx"
/ file = "SF.iqx"
/ file = "RF.iqx"
</batch>

<batch explicit_A>
/ subjects = (3 of 4)
/ groupassignment = subjectnumber
/ file = "EAA.iqx"
/ file = "RKAO.iqx"
/ file = "memory.iqx"
/ file = "RKAE.iqx"
/ file = "AUT.iqx"
/ file = "RAT.iqx"
/ file = "PF.iqx"
/ file = "SF.iqx"
/ file = "RF.iqx"
</batch>

<batch explicit_B>
/ subjects = (4 of 4)
/ groupassignment = subjectnumber
/ file = "EAB.iqx"
/ file = "RKAO.iqx"
/ file = "memory.iqx"
/ file = "RKAE.iqx"
/ file = "AUT.iqx"
/ file = "RAT.iqx"
/ file = "PF.iqx"
/ file = "SF.iqx"
/ file = "RF.iqx"
</batch>

Use /groups instead of /subjects, i.e.

/ groups = (1 of 4)
/ groupassignment = subjectnumber


to

/ groups = (4 of 4)
/ groupassignment = subjectnumber
By achen - 1/21/2025

Thanks, Dave!