Tag: Windows Services

How Stop And Start Windows Services From A Batch File

December 04, 2008 by Jason

One of the several things I like to do to keep my Windows computer running efficiently as possible is to remove unnecessary programs or processes from running that I really don’t need (such as crapware).

The next type of optimization I usually perform is to see if there are processes that I do need, but don’t want them running all the time and wasting valuable resources that can slow down performance. The first place I usually look for these types of processes is Windows Services that are set to auto start during boot up.

Once I identify which service or set of services I don’t need running constantly in the background, I’ll create a simple batch file that can be clicked on to start them up quickly…when I need to have them running.

If you are not familiar where to look for Windows services, there are several ways to access the services console window. The quickest way is to click on Start \ Run and enter services.msc from the run box. Read More»

Introducing Windows Vista Services

December 21, 2007 by Jason

Simply put a service can be described as a software application that runs continuously in the background while your computer is on.

BUT isn’t that what any software application does on a PC?

Well yes and no…

The main difference with a service is that they load into memory at boot time and start running whether or not anyone logs into the computer.

Windows has numerous services that run in the background and they provide basic functions to the system such as: connectivity to a network, printer support, access to visual themes and USB connectivity to name but a few. Read More»