Starting or stoping services with Command Prompt from remote computer . . .

  • Thread starter Thread starter Master
  • Start date Start date
M

Master

Dear all,

I want to start or stop services on remote computer (server) with command
prompt,

Do you know anyway or any tool about this?

Regards,
 
Master said:
Dear all,

I want to start or stop services on remote computer (server) with command
prompt,

Do you know anyway or any tool about this?

Regards,

You can use psexec.exe (www.sysinternals.com) to issue
these commands on any remote machine:

net start "Some Service"
net stop "Some Service"
 
In
Master said:
Dear all,

I want to start or stop services on remote computer (server) with
command prompt,

Do you know anyway or any tool about this?

Regards,

Resource kit has remote console tools

then you can run the

net stop "servicename"
net start "servicename"

commands

alternatively you can do this via the GUI

Start
Run
type
compmgmt.msc

Click OK

<Computer Management Console opens>

right click on
Computer Management (Local)
select
Connect to another computer....

select the computer you want to administer

navigate to

Services and applications
Services
 
Or you can use tool that I found in Resource Kit "netsvc"

NETSVC servicename \\computername /command

servicename Name of the service
computername Name of the computer to administer.
/command One of the following:
/query Queries the status of the service.
/start Starts the service.
/stop Stops the service.
/pause Pauses the service.
/continue Starts the paused service.
/list Lists installed services (omit servicename)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top