Skip to content

Instantly share code, notes, and snippets.

@rismoney
Created October 8, 2012 21:26
Show Gist options
  • Save rismoney/3855088 to your computer and use it in GitHub Desktop.
Save rismoney/3855088 to your computer and use it in GitHub Desktop.
class tunables::windows {
#using the from source https://github.com/puppetlabs/puppetlabs-registry.git
#not forge
#i just added this line thinking it might help
require registry
registry_value { 'HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\services\browser\Parameters\MaintainServerList':
ensure => present,
type => string,
data => 'Yes',
}
#i commented this out, thinking i would try the other method
# registry::value { 'MaintainServerList':
# key => 'HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\services\browser\Parameters',
# value => MaintainServerList,
# data => 'Yes'
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment