Skip to content

Instantly share code, notes, and snippets.

@motowilliams
Created April 1, 2018 04:50
Show Gist options
  • Save motowilliams/1d60e9a53c6fc47a67cac61eea4b65bc to your computer and use it in GitHub Desktop.
Save motowilliams/1d60e9a53c6fc47a67cac61eea4b65bc to your computer and use it in GitHub Desktop.
[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12
(New-Object System.Net.WebClient).DownloadFile("https://octopus.com/downloads/latest/WindowsX64/OctopusServer", "Octopus.Server.msi")
Start-Process "msiexec.exe" -argumentlist $("/i", "Octopus.Server.msi", "/qn", "/norestart") -Wait -NoNewWindow
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment