Start / Stop Services on Win2000

RAMMEDJR

Well Known Member
Can someone give me some direction on an utility or script that we could use
to automatically start and stop the JDE Network and Queue services on an
Windows 2000 application server? Any help would be greatly appreciated.

Dave Rammer
Sheboygan County IS

B7331 SP11.2 / Enterprise HP-UX 11.0 & Oracle 8.0.6 / Application server
Windows 2000
 
Have you already installed the services on the Server? If not go to a DOS prompt and go to *:\JDEdwardsOneWorld\ddp\B733?\system\bin32 and execute jdesnet -i then execute jdesque -i -d "JDE Update ? B733 Network" (? = the release you are on * = your drive where jde is installed)

If you have already installed the services on the server and set them to automatic you can create a new file called jdestop.cmd and add these lines in it.

@ECHO OFF
net stop JDE Update ? B733 Queue
net stop JDE Update ? B733 Network
exit

and jdestart.cmd to restart the services

@ECHO OFF
net start JDE Update ? B733 Network
net start JDE Update ? B733 Queue
exit

Then you can schedule the jdestop.cmd and jdestart.cmd files on any type of scheduler so you can bounce the services.

Robby



XE / SQL2K / W2KTSE
 
Check the download section of JDE list. I wrote a document for this on an NT
enterprise server. Feel free to cut and paste.

Colin




Colin Dawes, MSc
City of Guelph
B7332 SP13.1, Oracle 8.1.6, NT 4.0, Fat & WTS
 
Dave,

I found this some time ago - maybe you can use it. I was always able to
find a way to make it work...

Create a dos command (*.bat, *.cmd)
* Inside a dos command - you need
* NET START ServiceName
* Or
* NET STOP ServiceName

Now the Scheduler part....

* Control Panel - Schedule Tasks.
* Select Task (Probably Command Prompt/Dos)
* Select Time/Frequency
* Enter Username/Password/Password(again)
* Select Advance (enter the specifics regarding the command you want run)

You are done with the scheduler part...


At least, similarly is how I use to do things... There are now third party
tools available to complete your task... but, why spend the dollars?

It is nice doing business with 'the County.' Tell me some day if you have
been able to interface LE & CAD systems into your JDE - I was a CAD guy at
the ADA County Sheriff's Office in Idaho for ten great years....

Daniel Bohner
[email protected]
www.existinglight.net

or my day job


Daniel Bohner
Simplot Corporate Information Systems
Pioneer Building
Boise, ID 83702
(208)250-1917 personal cell
[email protected]
 
Back
Top