Giter Club home page Giter Club logo

puppet-windows's Introduction

windows

This module provides Puppet configurations for common Windows administration.

Windows Classes

windows::autologon

Configures automatic logon for the system for the given user. For example:

class { 'windows::autologon':
  user     => 'justin',
  password => 's3kr1t',
}

windows::iis_express

Downloads and installs IIS Express 8.

windows::java

Automatically downloads and installs Java from Oracle. Currently, it uses Java 8 Update 60. Use of this class implies your acceptance of the Oracle Binary Code License Agreement for SE Platform Products.

windows::nssm

Downloads and installs the Non-Sucking Service Manager.

windows::power_scheme

Sets the power scheme for the system, for example:

class { 'windows::power_scheme':
  ensure => 'High performance',
}

windows::refresh_environment

Contains an exec resource that will refresh the current environment -- used when modifying system variables and having them be reflected without logging off and/or rebooting. Notify this class after modifying any system enviornment variable.

windows::update

Configures automatic windows updates, consult its source for more information.

Windows Defined Types

windows::environment

Configures a windows environment variable, for example:

windows::environment { 'PYTHONPATH':
  value => 'C:\my_python_path'
}

windows::firewall_rule

Creates a Windows firewall rule, for a program or a local port. Some examples:

# Allow ICMP ping.
windows::firewall_rule { 'ICMP Ping':
  protocol => 'icmpv4:8,any',
}

# Allow Python 2.7.
windows::firewall_rule { 'python2.7':
  program => 'C:\Python27\python.exe',
}

windows::path

Ensures that the given directory is a part of the Windows %Path%, e.g.:

windows::path { 'C:\Python27': }

windows::regsvr32

Registers a DLL (or other control) specificed by the resource's name as a component in the registry.

windows::screen_saver

Configures a screen saver (specified by the given user name). For example, this configures the blank screen saver for the user justin to engage after 10 minutes, and requiring a password to log back in:

windows::screen_saver { 'justin':
  secure  => true,
  timeout => '10m',
}

windows::shortcut

Configures a windows shortcut, for example:

windows::shortcut { 'C:\Users\justin\Desktop\python.lnk':
  target      => 'C:\Python27\python.exe',
  description => 'Python 2.7',
}

windows::unzip

Unzips a file on Windows using Microsoft native APIs. For example:

windows::unzip { 'C:\compressed.zip':
  destination => 'C:\dest',
  creates     => 'C:\dest\uncompressed.txt',
}

This assumes that the file uncompressed.txt exists in C:\compressed.zip

License

Apache License, Version 2.0

Contact

Justin Bronn [email protected]

Support

Please log tickets and issues at https://github.com/counsyl/puppet-windows

puppet-windows's People

Contributors

jdavisp3 avatar rogerlz avatar etlweather avatar jbronn avatar makomatic avatar jonemo avatar rockwell-bkrische avatar aloysius-lim avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.