RE: [ActiveDir] OT: How to schedule a service to stop and restart t?

2002-10-14 Thread Roger Seielstad
- > Roger D. Seielstad - MCSE > Sr. Systems Administrator > Inovis - Formerly Harbinger and Extricity > Atlanta, GA > > > > -Original Message----- > > From: Kevin Felker [mailto:[EMAIL PROTECTED]] > > Sent: Friday, October 11, 2002 12:47 PM > > To: [EMAI

RE: [ActiveDir] OT: How to schedule a service to stop and restart?

2002-10-11 Thread Ken Cornetet
27;[EMAIL PROTECTED]' Subject: RE: [ActiveDir] OT: How to schedule a service to stop and restar t? Net start Net stop Each line goes in their own BAT file and you use task scheduler to run them at designated times. -Original Message- From: Kevin Felker [mailto:[EMAIL PROTECTED

RE: [ActiveDir] OT: How to schedule a service to stop and restart t?

2002-10-11 Thread Craig Cerino
om: Kevin Felker [mailto:[EMAIL PROTECTED]] > Sent: Friday, October 11, 2002 12:47 PM > To: [EMAIL PROTECTED] > Subject: [ActiveDir] OT: How to schedule a service to stop > and restart? > > > All, > > I'm trying to do a system backup of my server, but not all of it

RE: [ActiveDir] OT: How to schedule a service to stop and restart?

2002-10-11 Thread Roger Seielstad
- Formerly Harbinger and Extricity Atlanta, GA > -Original Message- > From: Kevin Felker [mailto:[EMAIL PROTECTED]] > Sent: Friday, October 11, 2002 12:47 PM > To: [EMAIL PROTECTED] > Subject: [ActiveDir] OT: How to schedule a service to stop > and restart? > > &

RE: [ActiveDir] OT: How to schedule a service to stop and restart?

2002-10-11 Thread Craig Cerino
, October 11, 2002 2:17 PM To: [EMAIL PROTECTED] Subject: RE: [ActiveDir] OT: How to schedule a service to stop and restart? That sounds easy, but what do I put in the batch file, someone earlier said to use vbs scripts, do I create a vbs file and put the file name in the batch file? -Original

RE: [ActiveDir] OT: How to schedule a service to stop and restart?

2002-10-11 Thread Puckett, Richard
objWMIService.ExecQuery("Associators of " _ & "{Win32_Service.Name='NetDDE'} Where " _ & "AssocClass=Win32_DependentService " & "Role=Dependent" ) For each objService in colServiceList objService.StartService() Next You should b

RE: [ActiveDir] OT: How to schedule a service to stop and restart?

2002-10-11 Thread Salandra, Justin A.
: Friday, October 11, 2002 12:40 PM To: [EMAIL PROTECTED] Subject:RE: [ActiveDir] OT: How to schedule a service to stop and restart? Kevin-if you creat a small batch file (.bat) to stop and one to start the services in question -- - you can just schedule tasks through scheduler to

RE: [ActiveDir] OT: How to schedule a service to stop and restart?

2002-10-11 Thread Kevin Felker
] Subject: RE: [ActiveDir] OT: How to schedule a service to stop and restart? Kevin -- if you creat a small batch file (.bat) to stop and one to start the services in question -- - you can just schedule tasks through scheduler to kick off those batch files. 1-2-6 yer done -Original Message

RE: [ActiveDir] OT: How to schedule a service to stop and restart?

2002-10-11 Thread Salandra, Justin A.
e -Original Message- From: Kevin Felker [mailto:[EMAIL PROTECTED]] Sent: Friday, October 11, 2002 2:17 PM To: [EMAIL PROTECTED] Subject:RE: [ActiveDir] OT: How to schedule a service to stop and restart? That sounds easy, but what do I put in the batch file, someone

RE: [ActiveDir] OT: How to schedule a service to stop and restart?

2002-10-11 Thread Craig Cerino
, 2002 12:47 PM To: [EMAIL PROTECTED] Subject: [ActiveDir] OT: How to schedule a service to stop and restart? All, I'm trying to do a system backup of my server, but not all of it is backing up since certain services are running (such as SQL SERVER). If I have my backup scheduled for 3:00

RE: [ActiveDir] OT: How to schedule a service to stop and restart?

2002-10-11 Thread Salandra, Justin A.
Try using Task Scheduler to stop and start services through the command prompt and .BAT Files. -Original Message- From: Kevin Felker [mailto:[EMAIL PROTECTED]] Sent: Friday, October 11, 2002 12:47 PM To: [EMAIL PROTECTED] Subject:[ActiveDir] OT: How to schedule a

RE: [ActiveDir] OT: How to schedule a service to stop and restart?

2002-10-11 Thread Jones, Rick J.(Desktop Engineering)
  objService.StartService()Next     You should be able to adjust this for your specific service and make 2 scripts that you could put into your scheduled tasks, 1 for shut down, the other for start up.   Rick J. Jones     -Original Message- From: Kevin Felker [mailto:[EMAIL PROTECTED]]

[ActiveDir] OT: How to schedule a service to stop and restart?

2002-10-11 Thread Kevin Felker
All, I'm trying to do a system backup of my server, but not all of it is backing up since certain services are running (such as SQL SERVER). If I have my backup scheduled for 3:00AM, I would like to stop the SQL SERVER Service at 2:50AM, and restart it at 4:00AM. What is the best way to do this