I have the following PowerShell script to install the application without user intervention:
Start-Process -FilePath "C:\Temp\UpgradeClientInstaller\setup.exe" -ArgumentList "/S /v/qn"
giving /sin the argument list, it should be installed without user intervention, but a popup window shows
Even I try with winrar.exeand zip.exefiles giving the same result. Is this the right way to do it?
source
share