Search found 2 matches

by BostonJake
Thu Jun 20, 2013 5:55 am
Forum: ExamDiff Pro
Topic: Start two sessions in batch file
Replies: 2
Views: 7682

Re: Start two sessions in batch file

Found the solution by adding the word 'START' when calling EXAMDIFF. Here is the updated code:

Code: Select all

SET PATH="C:\Program Files\ExamDiff Pro"

cd D:\Code\

START ExamDiff.exe file111.txt file222.txt

START ExamDiff.exe file333.txt file444.txt
by BostonJake
Wed Jun 19, 2013 11:50 pm
Forum: ExamDiff Pro
Topic: Start two sessions in batch file
Replies: 2
Views: 7682

Start two sessions in batch file

I am using examdiff pro on Windows 7

I would like to create a batch file that starts up two instances of examdiff. Here is what I have so far

SET PATH="C:\Program Files\ExamDiff Pro"

cd D:\Code\

ExamDiff.exe file111.txt file222.txt

ExamDiff.exe file333.txt file444.txt



Unfortunately, the ...