Skip to content

Instantly share code, notes, and snippets.

@gregjhogan
Created April 4, 2016 22:34
Show Gist options
  • Select an option

  • Save gregjhogan/67d8eba7736c6fc23bea5124f9b265e3 to your computer and use it in GitHub Desktop.

Select an option

Save gregjhogan/67d8eba7736c6fc23bea5124f9b265e3 to your computer and use it in GitHub Desktop.
install msi file from powershell
$msiexecArgs = @(
'/i',
'INSTALLER.msi', // THIS CAN BE A URL!
'/quiet',
'/norestart'
)
Start-Process -FilePath msiexec -ArgumentList $msiexecArgs -NoNewWindow -Wait
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment