silent install switch to avoid desktop icon |
Post Reply ![]() |
Author | |
tkleiber ![]() Groupie ![]() Joined: 16-December-2020 Points: 3 |
![]() ![]() ![]() ![]() ![]() Posted: 16-December-2020 at 7:56am |
Hi!
I don't want install the desktop icon in silent install. Is there any command line switch to avoid this? Best regards Torsten
|
|
![]() |
|
administrator ![]() Admin Group ![]() Stefan Mueller Joined: 25-January-2003 Location: New Zealand Points: 1058 |
![]() ![]() ![]() ![]() ![]() |
Dear Torsten,
Yes, there is. I use INNO Setup - the command line options for the installer can be found on https://jrsoftware.org/ishelp/index.php?topic=setupcmdline . Example: FormsAPIMaster40b351.exe /VERYSILENT /DIR="C:\Oracle\FormsAPIMaster" This will install the tool silently. Once installed you need to also register the license key. The easiest is to just generate that license key on your computer and then copy it to all your silent installed targets: - on your computer select “License everyone” on the licensing screen. If you chose “license current computer user” then it will create the file in your users profile application folder. If you chose “license everyone” it will create the file locally where FormsAPI Master has been installed. - Make sure you have admin rights (writing in the c:\program files\ folder requires that) - The file will be named LicenseFAV4.dat for FormsAPI Master V4.0. Now copy that license file to your target installations and they will be registered! Regards, Stefan
|
|
![]() |
|
tkleiber ![]() Groupie ![]() Joined: 16-December-2020 Points: 3 |
![]() ![]() ![]() ![]() ![]() |
Hi! /NOICONS will not help, as it "Don't create a Start Menu folder" Remove-Item "C:\Users\Public\Desktop\FormsAPI Maste*.lnk" -Force -ErrorAction Stop Best Regards Torsten
|
|
![]() |
|
administrator ![]() Admin Group ![]() Stefan Mueller Joined: 25-January-2003 Location: New Zealand Points: 1058 |
![]() ![]() ![]() ![]() ![]() |
Just tested it, you are right - the /noicons won't work. I think your workaround script is an ok solution. The other solution would be to use the installer with the /saveinf=c:\install.txt option to create a setup config file like this:
[Setup] Lang=default Dir=C:\Oracle\FormsAPI Master V4.0 Group=ORCL Toolbox\FormsAPI Master V4.0 NoIcons=0 SetupType=fullinstall Components=programfiles,helpfiles Tasks= ... and once you have that file you can run the installer with /loadinf=c:\install.txt /verysilent to install it. Regards, Stefan |
|
![]() |
Post Reply ![]() |
|
Tweet
|
Forum Jump | Forum Permissions ![]() You cannot post new topics in this forum You cannot reply to topics in this forum You cannot delete your posts in this forum You cannot edit your posts in this forum You cannot create polls in this forum You cannot vote in polls in this forum |