2

I write software for a company with global distribution sites. The software runs on various Windows (server 2003) servers located throughout the world.

Users run the software by accessing it from shares on the servers. Each server runs a suite of services that form the infrastructure of our application.

When we do an upgrade we tend to perform the following task on each server

  1. Stop all the services
  2. Copy the new binaries from a central location to the server
  3. Run any database update scripts
  4. Start the services
  5. Cross our fingers and hope everything has worked.

This is a very manual, tedious, time consuming, error prone operation.

I was wondering if someone could recommend software to automate our release procedures?

I'd really like a 'rollback' feature, and the ability to schedule releases.

All recommendations welcomed.

John Gardeniers
  • 27,458
  • 12
  • 55
  • 109
Rich
  • 131
  • 1

4 Answers4

1

The Microsoft solution is SCCM, formerly SMS. What's your budget? It isn't free, but you didn't say you need a low-cost solution.

mfinni
  • 36,144
  • 4
  • 53
  • 86
0

I have used CFengine to achieve this but that was on Linux. I think CFEngine supports windows TOO, but I think its a paid version. you can use that to run scripts or recipes across all the servers.

Sameer
  • 4,118
  • 2
  • 17
  • 11
0

If you're looking for a free solution, you can try PDQ Deploy (our product). It limits you to running only one action per deployment, but you could easily use a batch script to perform your multiple steps and just use PDQ Deploy to run the .bat on your servers.

Shawn Anderson
  • 542
  • 7
  • 14
0

I use Inno Setup (freeware) for this kind of thing. While at first it looks like little more than a simple installer it actually has a vey open-ended scripting language that can perform very complex tasks. Doing what you describe is a breeze. The only downside for me is that the scripting is based on Pascal, which I don't normally program in.

John Gardeniers
  • 27,458
  • 12
  • 55
  • 109