deploying cutepdf via silent install
Hi all.
Right now i am trying to deploy cutepdf using a script to my client PCs such that installation is automated. IN the below script there are 2 installations. Setup.exe for installing ghostscript where i have extract the ghostscript files to "converter" directory. Silent installation manage to work, but there would be a screen showing
"installing gpl ghostscript 8.15". Any idea how i can remove this screen so as not to alarm users? Thks in advance
:: Install pdf writer
@echo off
set ghostlocal=C:\Program Files\GPLGS
set ghostremote=\\server\package$\converter\Setup.exe
set pdflocal=C:\Program Files\Acro Software\CutePDF Writer
set pdfremote=\\server\package$\CuteWriter.exe
:: -------------------
:: install ghostwriter
:: -------------------
:: test if ghostlocal exists
if exist "%ghostlocal%" goto l-ghost-end
:: test if ghostremote exists
if not exist "%ghostremote%" goto l-ghost-end
:: install ghost writer
@echo off
%ghostremote% /verysilent
:l-ghost-end
:: ------------------
:: install pdf writer
:: ------------------
:: test if pdflocal exists
if exist "%pdflocal%" goto l-pdf-end
:: test if pdfremote exists
if not exist "%pdfremote%" goto l-pdf-end
:: install pdf writer
%pdfremote% /verysilent
:l-pdf-end
:end
Right now i am trying to deploy cutepdf using a script to my client PCs such that installation is automated. IN the below script there are 2 installations. Setup.exe for installing ghostscript where i have extract the ghostscript files to "converter" directory. Silent installation manage to work, but there would be a screen showing
"installing gpl ghostscript 8.15". Any idea how i can remove this screen so as not to alarm users? Thks in advance
:: Install pdf writer
@echo off
set ghostlocal=C:\Program Files\GPLGS
set ghostremote=\\server\package$\converter\Setup.exe
set pdflocal=C:\Program Files\Acro Software\CutePDF Writer
set pdfremote=\\server\package$\CuteWriter.exe
:: -------------------
:: install ghostwriter
:: -------------------
:: test if ghostlocal exists
if exist "%ghostlocal%" goto l-ghost-end
:: test if ghostremote exists
if not exist "%ghostremote%" goto l-ghost-end
:: install ghost writer
@echo off
%ghostremote% /verysilent
:l-ghost-end
:: ------------------
:: install pdf writer
:: ------------------
:: test if pdflocal exists
if exist "%pdflocal%" goto l-pdf-end
:: test if pdfremote exists
if not exist "%pdfremote%" goto l-pdf-end
:: install pdf writer
%pdfremote% /verysilent
:l-pdf-end
:end
0 Comments
[ + ] Show comments
Answers (0)
Please log in to answer
Be the first to answer this question
Rating comments in this legacy AppDeploy message board thread won't reorder them,
so that the conversation will remain readable.
so that the conversation will remain readable.