Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Micros 3700 reboot 1

Status
Not open for further replies.

Wolfraider

IS-IT--Management
May 21, 2004
4
US
We would like to automate a weekly reboot of our Micros 3700 system. What is the correct way of doing this? We where thinking of creating a script and scheduled task to stop the database and reboot.
 
Yes, you have to create a batch file, to turn the database off with command CLControl /SYSTEM IDLE, and in the next line you enter command for server restart. Thats all!

 
So the following script should work

@echo off
D:\MICROS\Res\Pos\Bin\CLControl.exe /SYSTEM IDLE
C:\Windows\System32\shutdown.exe /r /t 01 /d p:1:1

Thanks :)
 
or try like this

@echo off
start/min CLControl /SYSTEM IDLE
C:\Windows\System32\shutdown.exe /r /t 01 /d p:1:1
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top