Update AmyUni PDF 2.09 of 2.50

The Amyuni PDF Converter is our Printer Driver that enables you to convert any documents to PDF format. If you have any questions about installing and using the Amyuni PDF Converter please post them here.
Post Reply
stan31
Posts: 3
Joined: Fri Nov 18 2005
Location: France

Update AmyUni PDF 2.09 of 2.50

Post by stan31 »

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.
stan31
Posts: 3
Joined: Fri Nov 18 2005
Location: France

Re: Update AmyUni PDF 2.09 of 2.50

Post by stan31 »

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.
Joan
Amyuni Team
Posts: 2799
Joined: Wed Sep 11 2002
Contact:

Post by Joan »

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.
stan31
Posts: 3
Joined: Fri Nov 18 2005
Location: France

Post by stan31 »

Hello,

Where, I'm find a documentation for the "install.ini" ? (The section...)

I'm search in the web site, but I don't find the documentation...


Thanks,
Joan
Amyuni Team
Posts: 2799
Joined: Wed Sep 11 2002
Contact:

Post by Joan »

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.

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
Hope this helps.
Post Reply