Version information
released Dec 27th 2016
Start using this module
Add this module to your Puppetfile:
mod 'beryju-windows_oem', '1.0.0'
Learn more about managing modules with a PuppetfileDocumentation
beryju/windows_oem — version 1.0.0 Dec 27th 2016
windows_oem
Table of Contents
- Description
- Setup - The basics of getting started with windows_oem
- Usage - Configuration options and additional functionality
- Reference - An under-the-hood peek at what the module is doing and how
- Limitations - OS compatibility, etc.
- Development - Guide for contributing to the module
Description
This module set the OEM Settings in Windows.
Setup
What windows_oem affects
This modules changes Registry keys in the HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\OEMInformation
Hive.
Usage
Basic
class { 'windows_oem':
ensure => 'present',
manufacturer => 'BeryJu.org',
support_url => 'https://support.beryju.org',
}
...which yields...
With Logo
file { 'C:\Windows\System32\oemlogo.bmp':
source => 'puppet:///....'
}
class { 'windows_oem':
ensure => 'present',
manufacturer => 'BeryJu.org',
support_url => 'https://support.beryju.org',
logo => 'C:\Windows\System32\oemlogo.bmp',
requires => File['C:\Windows\System32\oemlogo.bmp']
}
...which yields...
Limitations
Tested on:
- Windows Vista
- Windows 7
- Windows 8
- Windows 8.1
- Windows 10
- Windows Server 2008
- Windows Server 2008R2
- Windows Server 2012
- Windows Server 2012R2
- Windows Server 2016
Dependencies
- puppetlabs-registry (>= 1.1.3)