REM --> ------------------------------------------------------------------ REM --> Copyright © 2015 by Xerox Corporation. All rights reserved. REM --> ------------------------------------------------------------------ REM --> Purpose: Enable FreeFlow Core External Node to LPR a PDF preserving REM --> the Job Name but excluding the XPF Job Ticket to REM --> solutions such as FreeFlow Output Manager that do not REM --> support IPP as input. May also be used to send jobs to REM --> printers not directly supported by FreeFlow Core. REM Required External Node Parameters and Order: "$FFin$" "$FFxpf$" "$FFwfJob.jobName$" "ServerNameOrIPAddress" "QueueName" REM Get the filename without the path set var1=%~n1-print.pdf REM Copy PDF without XPIF to working location as required by non-XPIF aware systems copy /B %1 "%var1%" REM LPR job C:\Windows\System32\lpr.exe -S %4 -P %5 -J %3 "-o l" "%var1%" REM Remove Temp File del /Q "%var1%"