We want to set up continuous deployment so that on every check in, the files are copied, sites are created and databases updated. This is working ok for now using lots of C# and calling it from C#.

We want to add Assertion/Checks to make sure the servers are the correct versions, urls are working, passwords are correct etc

The kind of thing I want is the SQL Server 2008 Installer, where it has a list of checks it performs before installing. I want to run this from unittests/powershell and if possible also add a GUI so that the systems team can "check" the state of the servers.

Is there a good tasks framework?

  • Team City
  • C#
  • NUnit
  • PowerShell
  • IIS, SQL Server, MSMQ etc
link|improve this question

For SharePoint but there is a project along those lines at sharepointinstaller.codeplex.com. It does some pre-install checks etc. Worth a look but I can't comment on the code quality. – Brian Lyttle Apr 21 '11 at 12:14
feedback

1 Answer

Take a look at OpsCode Chef or Puppet - what you're after is infrastructure automation. Both these tools support Windows automation now, and they both allow you to automate the building of environments.

You could also look at DbDeploy, a tool for controlling and tracking changes to databases.

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.