ASNA's Print File Renderer (Renderer.exe) is called automatically when you close a print file (when it’s a manuscript file only).
Parameters available for Renderer.exe and their function:
/m:"file" // Manuscript Path (required).
/d // Delete manuscript file after rendering is complete.
/q // Quiet printing. This hides the print preview window and just prints directly.
/r:"page range" // Specify page numbers and/or page ranges separated by commas (i.e. 1,3,5-12, *last).
/h or /? // Displays help on parameter usage.
The above parameters can be specified in any order.
The *last keyword refers to the last page of the document. In addition, you can specify arithmetic operations on *last in order to print pages relative to the last page. For instance/r:"*last-2 " will print the second to the last page, while/r:"*last-4 - *last" prints the last 5 pages.
A combinations of single page and a range of pages can be specified. /r:"1-3, 5,9, *last" will print pages 1, 2, 3, 5, 9, and the last page.
Print preview the entire report and do not delete Manuscript file when finished (all defaults used).
Renderer.exe "C:myReports\myManuscript.apm"
Renderer.exe "myManuscript.apm
Direct print complete report and delete Manuscript when finished (no preview).
Renderer.exe /m:"C:myReports\myManuscript.apm" /d /q
Renderer.exe /q /m:"C:\myOutQ\myManuscript.apm" /d Renderer.exe /m:"Manuscript.apm" /d /q
Direct print last page and delete Manuscript when finished (no preview).
Renderer.exe /m:"C:myReports\myManuscript.apm" /d /q /r:"*last"
Renderer.exe /m:"myManuscript.apm" /d /q /r:"*last"
Renderer.exe /m:"C:myReports\myManuscript.apm" /r:"1 - 3, *last-2 - *last"
Renderer.exe /m:"myManuscript.apm" /r:"1 - 3, *last-2 - *last"