Well there I was doing it the hard way - forgot to check the Forum
I run XP SP3 on a (currently)memory starved PC and Cumulus 1.8.8 build 881
When I checked srvrany I was reminded by MS that it is NOT intended for XP (I know; it does however work)
So I found this little SourceForge utility :
http://sourceforge.net/projects/uws/
This will call anything as a service - but (needless to say) not quite so simple :
The interact option ALWAYS opens a window - even if using the 'hidden' switch
So I run it as a straight headless service using this as the cumulus.config file :
Code: Select all
<log4net>
<appender name="File" type="log4net.Appender.FileAppender">
<file value="uws.log"/>
<appendToFile value="true"/>
<layout type="log4net.Layout.PatternLayout">
<conversionPattern value="%date [%thread] %-5level %logger - %message%newline"/>
</layout>
</appender>
<logger name="uws">
<level value="ALL"/>
<appender-ref ref="File"/>
</logger>
<logger name="Cumulus">
<level value="ALL"/>
<appender-ref ref="File"/>
</logger>
</log4net>
<!-- configuration of the universal windows service by itself -->
<application name="Cumulus" enabled="true">
<executable>
<path value="D:\Program Files\Cumulus\cumulus.exe"/>
<workingdir value="D:\Program Files\Cumulus"/>
<windowstyle value="minimized"/>
</executable>
<triggers>
<trigger type="uws.Triggers.OnServiceStartTrigger"/>
</triggers>
</application>
</uws>
Interestingly I seem to be able to open EasyWeather; Cumulus; Cumulus2 even with the Cumulus service running - however it is fairly easy to turn off the Cumulus service; I'll probably end up writing a bat file to turn the service off- run Cumulus - service on when I get round to it..
I hit anther problem - my Wireless network wasn't establishing until after log-on - so the wireless wizard is also now a service ... sigh ! but now an unattended re-start at least get Cumulus back on-line; now slowly de-bugging the ISS on the server...
Ideally I need to find out why EasyWeather; Cumulus; Cumulus2 are NOT loading on to my W2K Server ... and then I can run Cumulus on the same box as my web server...
Hope this is of interest