(imported topic written by stranqui91)
I am moving our software from our current deployment tool into BigFix. For some of the .msi’s, the /qn switch for a silent install works fine, but for a large percentage of them it does not.
I can run the .msi from a command prompt on the client machine using a switch and it installs with no problem. However, when I put it into BigFix with the /qn switch, the package never installs. When I run the task, I do see msiexec.exe in task manager on the client PC, but nothing gets installed. If I remove the switch from the action script, the package will install without a problem, however it requires user intervention.
Here is the Action Script example:
continue if {(size of it = 1195124 AND sha1 of it = “c1397f08b67025cd83f3437dff032c1b22482d3a”) of file “Password%2520Reset%2520Tool%2520-%2520FH%2520Usersmsi.tmp” of folder “__Download”}
extract Password%20Reset%20Tool%20-%20FH%20Usersmsi.tmp
wait “{pathname of system folder & “\msiexec.exe”}” /i “{(pathname of client folder of current site) & “__Download\Password Reset Tool - FH Users.msi”}” /qn
Any ideas?