Hi,
I do deploy AmyUni Converter PDF over 800 machines WIndows 2000/XP at scriting batch.
Problem :
- Where stoking the parametres of configuration ? (Advanced option, filigram....) for users...
- Install the printer in french en scipting .....
Thanks for help.
Update AmyUni PDF 2.09 of 2.50
Re: Update AmyUni PDF 2.09 of 2.50
stan31 wrote:Hi,
I do deploy AmyUni Converter PDF over 800 machines Windows 2000/XP at scriting batch.
Problem :
- Where stoking the parametres of configuration ? (Advanced options, filigram....) for users...
- Install the printer in french en scripting .....
Thanks for help.
Hello,
You can set the printer configuration in the file Install.ini
When running Install.exe to install the printer it will reads install.ini and takes the settings into consideration.
Or you can write your own application that that installs the printer by calling PDFDriverInit followed by DriverInit and in this same application (or small script) set the PDF printer settings programmatically.
You can set the printer configuration in the file Install.ini
When running Install.exe to install the printer it will reads install.ini and takes the settings into consideration.
Or you can write your own application that that installs the printer by calling PDFDriverInit followed by DriverInit and in this same application (or small script) set the PDF printer settings programmatically.
Hello,
There is no documentation for Install.ini specifically.
There is a documentation for CDIntf that you can use to programmatically specify all the PDF Printer settings. This is "Common Driver Interface 250.pdf" that you should have received with the PDF Converter.
Here is a sample script that enables you to install the printer and set font embedding option.
Hope this helps.
There is no documentation for Install.ini specifically.
There is a documentation for CDIntf that you can use to programmatically specify all the PDF Printer settings. This is "Common Driver Interface 250.pdf" that you should have received with the PDF Converter.
Here is a sample script that enables you to install the printer and set font embedding option.
Code: Select all
' This VB script can be used to Install the PDF Converter and set some of the printer features
Option Explicit
Dim PDF
Set PDF = CreateObject("cdintfEx.cdintfEx")
PDF.PDFDriverInit( "My PDF Printer" )
PDF.SetLicenseKey "Licensee","ActivationCode"
PDF.DriverInit( "PDF Printer" ) 'To prevent the printer from being removed
PDF.FontEmbedding = True
' Set other properties here.
PDF.SetDefaultConfig 'To be called after setting all configuration settings
Set PDF = Nothing