Thomas Hutton
Thomas Hutton

Reputation: 803

Silent Install for Files

I'm trying to create a script to install some files, sequentially. However, I want them to be installed with no user interaction.

Here's what I got so far:

cd "C:\Users\Tom\Documents\ScreenConnect\Files"
IF NOT EXIST "C:\Program Files (x86)\Citrix\ICA Client\SelfServicePlugin\SelfService.exe" (
 C:\Users\Tom\Documents\ScreenConnect\Files\CitrixReceiver-4.4.1000.exe
)

IF NOT EXIST "C:\Program Files\Cloudwerx\CloudwerxPlugin\uninstall.exe" (
 C:\Users\Tom\Documents\ScreenConnect\Files\cloudwerx-setup.exe
)

I want to install silently so the user doesn't see the install. I've tried , /s, /S, /silent, and /Silent.

Upvotes: 1

Views: 198

Answers (1)

RGuggisberg
RGuggisberg

Reputation: 4750

Try this to see if any HELP is shown: C:\Users\Tom\Documents\ScreenConnect\Files\CitrixReceiver-4.4.1000.exe /?

Upvotes: 2

Related Questions