Silent install & config PDF Converter 3.03 on Win XP

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
gocm79
Posts: 1
Joined: Mon Jan 19 2009

Silent install & config PDF Converter 3.03 on Win XP

Post by gocm79 »

Hi!

I'm preparing an automated mass rollout of AmyUni PDF Converter V3.03 on Win XP SP2 clients. The installation itself works fine with:

pdfdrv300.exe /s /d "%programfiles%\AmyUni" /N "Company" /C "Reg-Code"

but I would also like to preset some settings (f.e. set language to german, 300dpi a.s.o).

For V2.5 I used a VB-script for this:
' This VB script can be used to configure the installed printer
Option Explicit
Dim PDF
Set PDF = CreateObject("cdintfex.cdintfex")
PDF.DriverInit "Amyuni PDF Converter"
PDF.EnablePrinter "Company","Reg-Code"
'Resolution DPI
PDF.Resolution = 300
'Set Language to German
PDF.PrinterLanguage = 3
PDF.SetDefaultConfig 'To be called after setting all printer configuration
Set PDF = Nothing


Now to my questions:
1. Is there anywhere a list of ALL settings that can be set through a VB-script?
2. Is it also possible to set the "Configuration\Configurations" through VB? I like this new feature very much, so I would like to pre-configure few configurations.
3. Are there other ways to preset the settings?

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

Re: Silent install & config PDF Converter 3.03 on Win XP

Post by Joan »

All the settings that can be set through CDIntf can be set through a VB script.

For a full list please check our Developers' manual "Common Driver Interface 300.pdf"

Hope this helps.
Custom Brand the Amyuni PDF Printer Driver http://www.amyuni.com/en/developer/branding/index.html

Amyuni PDF Converter tested for true PDF performance. View results - http://www.amyuni.com/benchmark
Post Reply