Installshield problems

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
ColinParker
Posts: 18
Joined: Thu Mar 27 2003

Installshield problems

Post by ColinParker »

Hi there,

i am trying to automate the drive install and have run into a few problems. As the parameters required by the install.exe program are in quotes, installshield throws an exception. Is there anyway of passing the licence information using the install.ini file? I notice there is a
[Default]
PrinterName=""

is there one for licence?

cheers

Kev Moore
Joan
Amyuni Team
Posts: 2799
Joined: Wed Sep 11 2002
Contact:

Post by Joan »

Hello Colin,

Yes, there is a way to pass the information in the .ini file. Please contact our Support support@amyuni.com for more information.

Regards.
rborup
Posts: 3
Joined: Fri Oct 04 2002

Post by rborup »

Yes, there is a way to pass the [license] information in the .ini file. Please contact our Support support@amyuni.com for more information.
Joan,

The answer to this question would be of interest to many of us on this forum. Can the information be posted here please?

-Rick
Jose
Amyuni Team
Posts: 553
Joined: Tue Oct 01 2002
Contact:

Post by Jose »

Hello,

Below are the contents of isntall.ini file.

[Default]
PrinterName="Amyuni PDF Converter"
Licensee="Evaluation Version"
LicCode="07EFC...010001"

Please note that the licCode value is just an illustration and you should add the complete string.
Joan
Amyuni Team
Posts: 2799
Joined: Wed Sep 11 2002
Contact:

Post by Joan »

Hi,

I just want to add a reminder: as you know the Activation key is confidential, so install.ini is confidential as well and can not be distributed to your customers.

Install.ini is used mainly with a Corporate license when installed on different workstations inside the same company.

Have a nice day !

8)
Jonners
Posts: 6
Joined: Wed Apr 07 2004
Location: UK

Post by Jonners »

Hello,

Try using the escape character '\' to escape double quotes in your Installshield script

szAppName = TARGETDIR ^ "Install.exe";
szPrinterName = "\"My PDF Printer\"";
szLicensee = "\"Evaluation Developer License\"";
szActivationCode = "\"ABCDEFG\"";
szAppCmdLine = szPrinterName + " -n " + szLicensee + " -c " + szActivationCode;

LaunchAppAndWait(szAppName, szAppCmdLine, LAAW_OPTION_WAIT);

Hope this helps someone (even if it is 8 months since the last post)

John
Post Reply