Skip to content

Instantly share code, notes, and snippets.

@drrk
drrk / iis_demo\recipes\default.rb
Last active December 9, 2015 11:59
iis_demo recipe
powershell_script "Install IIS" do
code "add-windowsfeature Web-Server"
action :run
end
service "w3svc" do
action [:enable, :start ]
end
#node.default["iis_demo"]["indexfile"] = "Default2.htm"