Skip to content

Instantly share code, notes, and snippets.

@gaelcolas
Last active November 5, 2017 22:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gaelcolas/4481593e2548b50460637700eaa14ddb to your computer and use it in GitHub Desktop.
Save gaelcolas/4481593e2548b50460637700eaa14ddb to your computer and use it in GitHub Desktop.
#Assuming you already have this hashtable
$MyHash = @{
Ensure = 'Present'
Name = 'Putty'
Version = 'Latest'
ChocolateyOptions = @{ source = 'https://chocolatey.org/api/v2/' }
}
Configuration MyDscConfig {
$Allnodes.nodename {
ChocolateyPackage Putty {
Ensure = $MyHash['Ensure']
Name = $MyHash['Name']
Version = $MyHash['Version']
ChocolateyOptions = $MyHash['ChocolateyOptions']
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment