Share this topic on AskShare this topic on Del.icio.usShare this topic on DiggShare this topic on FacebookShare this topic on GoogleShare this topic on LiveShare this topic on MagnoliaShare this topic on MySpaceShare this topic on RedditShare this topic on SlashdotShare this topic on StumbleUponShare this topic on TechnoratiShare this topic on TwitterShare this topic on YahooShare this topic on Google buzz

Author Topic: Windows Administrative Services  (Read 1084 times)

0 Members and 1 Guest are viewing this topic.

Offline tomsbv

  • New Member
  • *
  • Posts: 1
Windows Administrative Services
« on: November 15, 2008, 06:06:06 AM »
Hello:  I would like to document ALL the  commands to use in the command prompt window to use in Administrative Services e.g.>>> Delete a service, add a service etc. Anyone know where I can find this list? Thanks

Offline Dolphin

  • Premium Member
  • *****
  • Posts: 341
  • 2 wrongs don't make a right, but 3 lefts do!!
Re: Windows Administrative Services
« Reply #1 on: November 15, 2008, 09:15:35 AM »
Well, I use a batch file to start and stop certain services that I do not need running all the time.

Here are the 2 batch files I use:
------------
START.BAT

sc config wuauserv start= auto
sc start wuauserv
sc start BITS
-------------
STOP.BAT

sc stop BITS
sc stop wuauserv
sc config wuauserv start= disabled
--------------

These start and stop the "Windows Automatic Update Service" and "Background Intelligent Transfer Service"....both of which are needed to connect to Microsoft for updating.

Not exactly sure how they really work and I picked these up a couple of years ago from another Windows guru, but they do work.

So I would imagine that typing each individual command into a command prompt window or from "Run" window would work just as well.

Anyone correct me here if I am wrong with any of this....don't proclaim to be a guru myself.

Also here is a link to commands that can be used in the command prompt window.  Hope this helps.

http://commandwindows.com/command3.htm

Now go have a great day.... :P

Bill

Offline Black Viper

  • Administrator
  • ******
  • Posts: 2262
  • "Have you tweaked your OS lately?"
    • Black Viper's Web Site
Re: Windows Administrative Services
« Reply #2 on: November 15, 2008, 10:20:09 AM »
You can also use "net start" or "net stop" for services.

Code: [Select]
net start Alerter
or

Code: [Select]
net stop Alerter
but if you have a service that has a space in it, you will need to surround the name in quotes.

Code: [Select]
net start "Computer Browser"
I have to assume when you say "delete a service" that you mean to "stop" it, or "add a service" that you mean "start" or place it into automatic.

for all of the "Service Controller" commands, just type:

Code: [Select]
sc
at the command prompt for the help and syntax.