The Print2NG tool can also be used independently of the printer to load PDF or XML documents onto a NextGen device. The default installation path of the tool is "CLa herramienta Print2NG también puede utilizarse independientemente de la impresora para cargar documentos PDF o XML en un dispositivo NextGen. La ruta de instalación predeterminada de la herramienta es «C:\Program Files\StepOver\P2NG\Print2NG.exe" The supported parameters are listed below.
...
long Parameter
...
short Parameter
...
exe» A continuación se enumeran los parámetros admitidos.
Parámetro largo | Parámetros cortos | Descripción |
---|---|---|
--? --help | -? -hDisplays an overall overview of the possible command line parameters | Muestra una visión general de los posibles parámetros de la línea de comandos. |
--log | -lThe application's output is written to a file | La salida de la aplicación se escribe en un archivo. |
--fullscreen | Print2NG runs in fullscreen modefunciona en pantalla completa | |
--files | -f | This is followed by one or more files A continuación aparecen uno o varios archivos (.xml or o .pdf), which the PrinterTool transfers to the NextGen device one after the otherque la impresora transfiere al dispositivo NextGen uno tras otro |
--ipadr | -iThe IP | or hostname of the NextGen device to be used can be specified here. e.g.: “Aquí se puede especificar la IP o el nombre de host del dispositivo NextGen que se va a utilizar. p. ej: «-i 192.168.1.80”80» |
--usehttps | Connection to the NextGen device via a secured HTTPS connectionConexión al dispositivo NextGen a través de una conexión HTTPS segura. | |
--pw | -p | In the En el dispositivo NextGen device, access to the website or REST API can be protected by a password (home page). If this is the case, this password must also be passed on to the printer tool, el acceso al sitio web o a la API REST puede estar protegido por una contraseña (página de inicio). Si este es el caso, esta contraseña también debe transmitirse a la herramienta de impresión. |
--readDir | -r | Sets the starting directory for manual document selectionEstablece el directorio de inicio para la selección manual de documentos. |
--writeDir | -wDefines the directory in which the signed documents should be saved | Define el directorio en el que deben guardarse los documentos firmados. |
--noSaveChooser | -nThe Save As dialog is suppressed and the file is automatically saved in the specified target directory. This can also be set as a parameter with | Se suprime el cuadro de diálogo Guardar como y el archivo se guarda automáticamente en el directorio de destino especificado. Esto también puede establecerse como parámetro con --writeDir. |
--adddate | The saved document is provided with the date and time (_YYYYMMDDSSMM) in the file name, e.g. “PDFDocument_202405311255.pdf”El documento guardado se proporciona con la fecha y la hora (__YYYYMMDDSSMM) en el nombre del archivo, por ejemplo, «PDFDocument_202405311255.pdf» | |
--pageFor multi-page documents, you can specify which page should be displayed first | Para documentos de varias páginas, puede especificar qué página debe mostrarse primero. | |
--startsig | -gAfter | the transfer, you automatically switch to signing modePara iniciar automáticamente al modo de firma. |
--autoclose | -a | After the document is signed, downloaded and saved, the program exitsUna vez firmado, descargado y guardado el documento, el programa se cierra. |
--minimize | -z | The application will start minimizedLa aplicación se iniciará minimizada. |
ExamplesEjemplos:
Code Block |
---|
# Just upload a PDF # "C:\Program Files\StepOver\P2NG\Print2NG.exe" "C:\Temp\Lorem ipsum.pdf" # Upload 2 Documents on the device Nextgen123456789.local which has the Mainpassword "MyPassword". The Print2NG will first upload the "Lorem ipsum.pdf" document and when this is closed the "DEMO.pdf" will be uploaded # "C:\Program Files\StepOver\P2NG\Print2NG.exe" --files "C:\Temp\Lorem ipsum.pdf" --files "C:\Temp\Demo.pdf" --ipadr Nextgen123456789.local --pw MyPassword # Upload Demo.xml, Print2NG will run minimized, start signing process and will close it self after saving automatically to "C:\Temp\Output\" # "C:\Program Files\StepOver\P2NG\Print2NG.exe" -f "C:\Temp\Input\Demo.xml" --minimize --startsig --autoclose --noSaveChooser --writeDir "C:\Temp\Output\" |