Silent installation wihout user interaction

Hello all,

I need to bulk install on pyrevit stations this .exe pyRevit_4.8.14.24016_admin_signed.exe without user interaction… Is it possible and how to do it? Despite these parameters in the code it still forces interaction. I would deploy to a GPO if I could do it without interaction. Have you solved this yet?

Thanks for the advice

$ExePath = “C:path\pyRevit_4.8.14.24016_admin_signed.exe”
$Arguments = @(
“/S”,
“/v/qn”,
“/qb”
)

Start-Process -FilePath $ExePath -ArgumentList $Arguments -Wait -NoNewWindow

https://jrsoftware.org/ishelp/topic_setupcmdline.htm

/SILENT, /VERYSILENT

Instructs Setup to be silent or very silent. When Setup is silent the wizard and the background window are not displayed but the installation progress window is. When a setup is very silent this installation progress window is not displayed. Everything else is normal so for example error messages during installation are displayed and the startup prompt is (if you haven’t disabled it with DisableStartupPrompt or the ‘/SP-’ command line option explained above).

If a restart is necessary and the ‘/NORESTART’ command isn’t used (see below) and Setup is silent, it will display a Reboot now? message box. If it’s very silent it will reboot without asking.