Answers for "silent installation with powershell"

0

silent installation with powershell

$process = Start-Process msiexec -ArgumentList "/i .\YourInstaller.msi /qn /norestart /l*v install.log TRANSFORMS=C:\Your\Transform.mst" -Wait -PassThru
Posted by: Guest on September-06-2020
0

silent installation with powershell

$process = Start-Process msiexec -ArgumentList "/i .\YourInstaller.msi /qn /norestart /l*v install.log TRANSFORMS=C:\Your\Transform.mst" -Wait -PassThru
Posted by: Guest on September-06-2020

Code answers related to "silent installation with powershell"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language