﻿<?xml version="1.0" encoding="UTF-8"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/"><channel><title>Millisecond Forums » Millisecond Forums » Inquisit 4  » Redirecting between websurvey and Inquisit on a local computer</title><generator>InstantForum 2017-1 Final</generator><description>Millisecond Forums</description><link>https://forums.millisecond.com/</link><webMaster>Millisecond Forums</webMaster><lastBuildDate>Sat, 12 Sep 2026 23:05:21 GMT</lastBuildDate><ttl>20</ttl><item><title>Redirecting between websurvey and Inquisit on a local computer</title><link>https://forums.millisecond.com/Topic14943.aspx</link><description>&lt;p&gt;I've got one survey on &lt;a href="https://www.soscisurvey.de/"&gt;&lt;a href="https://www.soscisurvey.de/"&gt;https://www.soscisurvey.de/&lt;/a&gt;&lt;/a&gt;&lt;br/&gt;&lt;br/&gt;And I have a programmed experiment with some surveys on a local computer.&lt;br/&gt;Is it possible to redirect from the local Inquisit experiment to a web survey?&lt;/p&gt;</description><pubDate>Wed, 12 Nov 2014 03:15:33 GMT</pubDate><dc:creator>Topher Hübel</dc:creator></item><item><title>RE: Redirecting between websurvey and Inquisit on a local computer</title><link>https://forums.millisecond.com/Topic14963.aspx</link><description>Strange indeed. If this happens again, perhaps use a different browser than IE that's available on your system (e.g. Firefox, Chrome). Calling those via the command line basically works the same.&lt;br/&gt;</description><pubDate>Wed, 12 Nov 2014 03:15:33 GMT</pubDate><dc:creator>Dave</dc:creator></item><item><title>RE: Redirecting between websurvey and Inquisit on a local computer</title><link>https://forums.millisecond.com/Topic14962.aspx</link><description>Weird. I shut down my computer and started it again today. Now it's working properly.&lt;br/&gt;&lt;br/&gt;Thank you for your help!</description><pubDate>Wed, 12 Nov 2014 03:06:28 GMT</pubDate><dc:creator>Topher Hübel</dc:creator></item><item><title>RE: Redirecting between websurvey and Inquisit on a local computer</title><link>https://forums.millisecond.com/Topic14953.aspx</link><description>&amp;gt; ... but the Internet Explorer and the second Experiment fire up at the same time.&lt;br/&gt;&lt;br/&gt;Not on my system. Start of the 2nd script is properly delayed until the iexplore.exe process shuts down.&lt;br/&gt;</description><pubDate>Tue, 11 Nov 2014 09:18:49 GMT</pubDate><dc:creator>Dave</dc:creator></item><item><title>RE: Redirecting between websurvey and Inquisit on a local computer</title><link>https://forums.millisecond.com/Topic14952.aspx</link><description>&lt;p&gt;@echo off&lt;br/&gt;set INQUISITPATH="C:\Program Files (x86)\Microsoft Application Virtualization Client\sfttray.exe" /launch "Inquisit 4 v 4.0.2.0"&lt;br/&gt;set SCRIPTPATH="&lt;a href="file://\\fs02\huebel$\Dokumente\MASCOT\MASCOT.iqx"&gt;\\fs02\huebel$\Dokumente\MASCOT\MASCOT.iqx&lt;/a&gt;"&lt;br/&gt;set SCRIPTPATH2="&lt;a href="file://\\fs02\huebel$\Dokumente\MASCOT\surveys.iqx"&gt;\\fs02\huebel$\Dokumente\MASCOT\surveys.iqx&lt;/a&gt;"&lt;br/&gt;set /p SID=Enter subject ID:&lt;br/&gt;set /p GID=Enter group ID:&lt;/p&gt;&lt;p&gt;start "" /wait %INQUISITPATH% %SCRIPTPATH% -s %SID% -g %GID%&lt;br/&gt;start /wait iexplore.exe &lt;a href="https://www.soscisurvey.de/DUCTUS/"&gt;&lt;a href="https://www.soscisurvey.de/DUCTUS/"&gt;https://www.soscisurvey.de/DUCTUS/&lt;/a&gt;&lt;/a&gt;&lt;br/&gt;start "" /wait %INQUISITPATH% %SCRIPTPATH2% -s %SID% -g %GID%&lt;br/&gt;&lt;br/&gt;Nearly everything is working fine now, but the Internet Explorer and the second Experiment fire up at the same time.&lt;br/&gt;I can't manage that. Any idea how to fix it?&lt;br/&gt;&lt;br/&gt;That would be great!&lt;br/&gt;&lt;/p&gt;</description><pubDate>Tue, 11 Nov 2014 09:08:00 GMT</pubDate><dc:creator>Topher Hübel</dc:creator></item><item><title>RE: Redirecting between websurvey and Inquisit on a local computer</title><link>https://forums.millisecond.com/Topic14951.aspx</link><description>If using Windows batch files, you'll want to do something like this:&lt;br/&gt;&lt;br/&gt;@echo off&lt;br/&gt;set INQUISITPATH="C:\Program Files\Millisecond Software\Inquisit 4\Inquisit.exe"&lt;br/&gt;set SCRIPTPATH="D:\myscript.iqx"&lt;br/&gt;set /p SID=Enter subject ID:&lt;br/&gt;set /p GID=Enter group ID:&lt;br/&gt;&lt;br/&gt;start "" /wait %INQUISITPATH% %SCRIPTPATH% -s %SID% -g %GID%&lt;br/&gt;start iexplore.exe &lt;a href="https://www.google.com/?q=%SID%%GID%"&gt;https://www.google.com/?q=%SID%%GID%&lt;/a&gt;&lt;br/&gt;</description><pubDate>Tue, 11 Nov 2014 08:56:08 GMT</pubDate><dc:creator>Dave</dc:creator></item><item><title>RE: Redirecting between websurvey and Inquisit on a local computer</title><link>https://forums.millisecond.com/Topic14947.aspx</link><description>You'll have to familiarize yourself with batch syntax. You'll want to use the start command and its /wait switch, cf. &lt;a href="http://technet.microsoft.com/en-us/library/bb491005.aspx"&gt;http://technet.microsoft.com/en-us/library/bb491005.aspx&lt;/a&gt; .&lt;br/&gt;&lt;br/&gt;Also see &lt;a href="http://msdn.microsoft.com/en-us/library/ie/hh826025%28v=vs.85%29.aspx"&gt;http://msdn.microsoft.com/en-us/library/ie/hh826025%28v=vs.85%29.aspx&lt;/a&gt;&lt;br/&gt;</description><pubDate>Tue, 11 Nov 2014 07:53:55 GMT</pubDate><dc:creator>Dave</dc:creator></item><item><title>RE: Redirecting between websurvey and Inquisit on a local computer</title><link>https://forums.millisecond.com/Topic14945.aspx</link><description>"C:\Program Files (x86)\Microsoft Application Virtualization Client\sfttray.exe" /launch "Inquisit 4 v 4.0.2.0" "&lt;a href="file://\\fs02\huebel$\Dokumente\MASCOT\MASCOT.iqx"&gt;\\fs02\huebel$\Dokumente\MASCOT\MASCOT.iqx&lt;/a&gt;" -s %1 -g 1&lt;br/&gt;"C:\Program Files\Internet Explorer\iexplore.exe"&lt;br/&gt;"C:\Program Files (x86)\Microsoft Application Virtualization Client\sfttray.exe" /launch "Inquisit 4 v 4.0.2.0" "&lt;a href="file://\\fs02\huebel$\Dokumente\MASCOT\survey.iqx"&gt;\\fs02\huebel$\Dokumente\MASCOT\survey.iqx&lt;/a&gt;" -s %1 -g 1&lt;br/&gt;&lt;br/&gt;1) I programmed that, but it only fires up all two experiments and the browser at the same time and not in a row.&lt;br/&gt;2) How can I Programm to open a certain web page?&lt;br/&gt;&lt;br/&gt;</description><pubDate>Tue, 11 Nov 2014 07:20:50 GMT</pubDate><dc:creator>Topher Hübel</dc:creator></item><item><title>RE: Redirecting between websurvey and Inquisit on a local computer</title><link>https://forums.millisecond.com/Topic14944.aspx</link><description>Yes (in a sense). See the "Running Sequences of Inquisit Scripts and Other Applications" topic in the documentation. In a nutshell, you write a Windows batch file (or shell script equivalent under OSX) that runs your Inquisit scripts and fires up a browser with the URL to your survey afterwards.&lt;br/&gt;</description><pubDate>Tue, 11 Nov 2014 06:55:53 GMT</pubDate><dc:creator>Dave</dc:creator></item></channel></rss>