Created
April 1, 2018 04:50
-
-
Save motowilliams/1d60e9a53c6fc47a67cac61eea4b65bc to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[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