Are there any tools for windows like that *nix world has? I am looking for something like Chef or Puppet.

I have found cfEngine but it still looks very *nix centric. Ideally it would be open source, and command line driven.

The idea is to put together an automated infrastructure with windows based servers. Our current IT department does not allow non-windows servers.

link|improve this question

feedback

3 Answers

up vote 7 down vote accepted

Chef is supported on Windows by Opscode. While we don't run Windows for any of our infrastructure, we do have developers who are continually improving our Windows support. We also get community contributions, and most of the early phase Windows functionality for Chef was contributed by the community.

Important: Opscode now provides an MSI installer for Chef on Windows. This makes it easier than ever to get Chef and Ruby installed on Windows.

While we have a lot of Unix/Linux background across our teams, our intention is that Windows is treated as a first class citizen. 2012 will be a big year for Chef and Windows. Keep an eye on the Opscode blog for announcements.

The following Chef Resources work on Windows:

Environment Resource: sets windows environment variables
User
Group
Mount
File
Gem Package
Remote File
Cookbook File
Template
Service
Ruby Block
Execute

That is, these are resources included in Chef itself. As Chef is extensible with cookbooks, many more resources are added through a variety of Windows specific cookbooks. Read on for more information.

You can get started with using Chef and Windows here:

Originally, Doug MacEchern wrote some cookbooks to do a number of things to automate windows, too.

This information and more available on the Chef Wiki:

Update

The following cookbook adds new resources to Chef to manage Windows:

It is an update/rewrite of Doug's fine resources from his repository linked above. Documentation is available on the Chef Wiki.

The following cookbook deploys PowerShell and provides a resource to run PowerShell commands/scripts directly in Chef Recipes:

Documentation is available in the README.md included in the cookbook tarball.

Additional cookbooks for installing 7-zip, managing IIS and SQL Server have been added. Our "database" cookbook has been extended with a resource/provider for managing SQL Server databases and users (with the tds rubygem).

The knife-windows plugin for knife adds functionality for interacting with Windows systems to provision them with Chef installation.

We have a number of file permission/ACL improvements on the way, scheduled for 0.10.10 (readers of the future, that release may already be out and I haven't updated this answer).

link|improve this answer
and what is not supported? – sumek Jun 23 '11 at 9:56
@sumek Depends on what you mean? Not supported on Windows? – jtimberman Jul 13 '11 at 1:00
yes, what chef functionality is not supported on windows? – sumek Jul 13 '11 at 11:03
@sumek Chef's core functionality is managing resources on nodes, and it relies on a provider for a particular operating system to manage resources of a particular kind. The providers that are missing on Windows may not have a direct parallel on Windows, but since Chef is extensible, it is possible to add "support" via cookbooks, similar to the Powershell example. A new "Windows" cookbook released recently adds Windows registry and "package" management as well. – jtimberman Aug 2 '11 at 4:02
feedback

Cfengine Nova has had stable native support for Windows for years (i.e. no Cygwin is needed).

Everything that is possible on Unix (e.g. run commands, file copy, file edit, etc.) can also be done on Windows, with addition to Windows-specific features like

  • Registry management
  • File ACL permissions
  • Windows service management
  • Event log support
  • Advanced OS discovery (version, arch, service pack, network, domain, etc.)

For a short introduction, look in Section 11 of the Nova supplement manual: http://cfengine.com/files/Nova_Supplement.pdf

link|improve this answer
But does it manage IIS? I mainly need a tool for managing IIS servers. – Nathan Lee Feb 9 '11 at 4:22
feedback

Based on my experience, I am glad to use such toolset:

  1. Use powershell to manage the windows configuration. If only windows server, you can remotely execute the ps script.

  2. If you like, suggest to use Puppet or Chef to distribute your powershell script into client.

  3. If you like, suggest to use cygwin + (windows sshd) + crond to manage the shell-likely scripts which run in windows.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.