For LPR-printing from FFCore I have made the following work:
1. For LPR without XPIF
Create a batch file that LPRs to some printer:
lpr -S 192.168.1.85 -P X770_HOLD %1 -J %2
move %1 %3
Create an External Process that uses the above batch file with the following Parameters:
"$FFin$" "$FFwfjob.jobName$" "$FFout$"
2. For LPR with XPIF
Create a batch file that LPRs to some printer:
copy %1 /a + %2 /b %3
lpr -S 192.168.1.85 -P X770_HOLD %3
del %3
move %2 %4
Create an External Process that uses the above batch file with the following Parameters:
"$FFxpf$" "$FFin$" "$FFwfjob.jobName$" "$FFout$"
/Stefan