.msi Downloads
AnsweredHello!
I would like to request .msi installation files to do silent installs on workstations
Thank you!
-
Hi Jennifer,
There's no plans to switch back to msi files as it was back in the days.
Investigating a little deeper in the PDQ knowledge base its looks like post exe could be deployed:
https://support.pdq.com/knowledge-base/1507We have 2 options
You could use bat-scripts and installers inside. Bat-script launches installers with necessary parameters. So this file should be sent to remote PC, unzipped and bat file should be launched - the rest is on remote PC side.
You could use the command below:
start /wait %FILE% /silent /norestart -l %LOG_FILE%.log
Where %FILE% is the absolute path to the .exe installation file. This command installs software and sends installation standard output to the %LOG_FILE% path. The last part might be omitted if logging is unnecessary.
0
Please sign in to leave a comment.
Comments
1 comment