Skip to content

Instantly share code, notes, and snippets.

@kurobeats
Last active July 6, 2020 16:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save kurobeats/b9447baa2ce6cef03791d83d2c152114 to your computer and use it in GitHub Desktop.
Save kurobeats/b9447baa2ce6cef03791d83d2c152114 to your computer and use it in GitHub Desktop.
powershell install salt-minion
$saltversion = "Salt-Minion-2018.3.2-Py3-AMD64-Setup.exe"
$source = "https://repo.saltstack.com/windows/$saltversion"
$destination = "c:\temp\$saltversion"
Set-Location C:\temp
wget $source -OutFile $destination
iex 'c:\temp\Salt-Minion-2018.3.2-Py3-AMD64-Setup.exe /S /master=salt-master /minion-name=$env:computername'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment