Hi,<br><br>here&#39;s a couple of tips that may help:<br><br>&gt; 1) Is there a service version of &quot;cruise start&quot; for Windows? What I&#39;d like to achieve is to have cruise start at startup. In fact my server gets rebooted sometimes, and I&#39;d love to have cruise up and 
<br>&gt; running when it reboots.
<div><div><br>Not sure if there is something built-in in cc.rb for that purpose. You may want to have a look at <a href="http://www.duodata.de/ntwrapper/">http://www.duodata.de/ntwrapper/</a> - I&#39;m using it for one SVN repository which is started as a service on a W2K server. Alternatively I&#39;ve also been using cygwin which provides helpers to boot any command line as a service too (but It&#39;s a bit heavier to download).
<br></div><br>&gt; 2) I&#39;ve setup the email notification, by specifying my gmail user credentials and the notification emails, but unfortunately no emails have ever been sent. Analyzing the logs I&#39;ve not found anything related 
<br>&gt; to email attempts which failed.<br><br>Did you configure the smtp server in your ~cruise/config/site_config.rb (I suppose so) ? Can the smtp host name be resolved from that machine ? Can you try with a deliberately wrong password to see if something happens ?
<br><br>&gt; 3) It is probably out of the scope of CruiseControl.rb, but I&#39;d like to use it in connection to a local working copy of the repository. Every time CruiseControl.rb detects a successful build, it should run a 
<div>&gt; svn up on a given local folder, though this shouldn&#39;t be the case if the build were to fail. I can hack something together to obtain this functionality, but I&#39;d like some pointers as to where I should look in 
<br>&gt; order to get started with this.
<br></div><br>ccnet.rb is good at calling rake, and with rake it&#39;s easy to call a svn up on a specific folder. Are you using rake ? You could achieve what you describe with something similar to:<br><br>task :build do
<br>&nbsp; # do what you need to build<br>end<br><br>task :deploy =&gt; :build do<br>&nbsp; Dir.chdir(&#39;c:/website&#39;)<br>&nbsp; throw &quot;Failure while updating my website!&quot; unless system(&#39;svn up&#39;)<br>end<br><br>I&#39;ve been using this a lot with 
CruiseControl.Net a lot (like: compiling <a href="http://asp.net">asp.net</a> applications, packaging them, runnings tests, then deploying to an internal staging server if the build is successful)<br><br></div>cheers,<br>
<br>Thibaut Barrère<br>