> Hi this is probably overly simple but whats the best way to > schedule a stop and start of the cf services in the wee hours?
Using your system's scheduler, schedule a batch file or shell script to stop and start the services. If you're running NT or 2000, you can use the command-line at.exe interface to schedule a batch file. The batch file itself should contain the appropriate commands to stop and start the ColdFusion services. In Windows, that might look something like this: net stop "SiteMinder Authentication Service" net stop "SiteMinder Authorization Service" net stop "ColdFusion Management Repository Server" net stop "ColdFusion Graphing Server" net stop "ColdFusion Management Service" net stop "ColdFusion Monitoring Service" net stop "Cold Fusion RDS" net stop "Cold Fusion Executive" net stop "Cold Fusion Application Server" net start "SiteMinder Authentication Service" net start "SiteMinder Authorization Service" net start "ColdFusion Management Repository Server" net start "ColdFusion Graphing Server" net start "ColdFusion Management Service" net start "ColdFusion Monitoring Service" net start "Cold Fusion RDS" net start "Cold Fusion Executive" net start "Cold Fusion Application Server" Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ voice: (202) 797-5496 fax: (202) 797-5444 ______________________________________________________________________ Get Your Own Dedicated Windows 2000 Server PIII 800 / 256 MB RAM / 40 GB HD / 20 GB MO/XFER Instant Activation � $99/Month � Free Setup http://www.pennyhost.com/redirect.cfm?adcode=coldfusionb FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives: http://www.mail-archive.com/[email protected]/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists

