- Aug
- 2,032
- 82
If you are lacking in computer memory and system resources, one way that you can increase your computer memory and system resources is by stopping unnecessary services.
If you do a Google search for “unnecessary windows xp services” you will find many web pages with information in regards to this subject.
To see a list of all services currently running on my XP system, I type the following at the 4NT8 prompt;
While I have turned off several unnecessary windows xp services, there is one that I use on occasion. Until I need to use it, though, it is still taking up computer memory and system resources.
In order to print from Windows XP, it is necessary to have the Print Spooler Service started.
To check the status of the Print Spooler from the 4NT8 prompt, I type the following;
On my XP system, this returns;
There are two ways that I know of to stop the Print Spooler from the command prompt.
First, you can type;
Which returns the following;
Note that the state indicates STOP_PENDING. So, in order to be sure that the Spooler service is indeed stopped, I have to type;
Which returns;
Note that the state indicates STOPPED.
Another method to stop the Print Spooler from the command prompt is by using the NET command. From the command prompt, type;
This command takes a little longer, as it waits until the service has been stopped. On my XP system, it returns;
Note also that the errorlevel of the command returns 0, indicating success. You can query the errorlevel of the command by typing the following at the prompt;
If you run the command again, an errorlevel of 2 is returned, because you cannot stop a service that is already stopped. Ditto for trying to start a service that is already started.
To start the Print Spooler using the NET command, type;
The WMI (Windows Management Instrumentation) offers a way to determine if a service is started or not. Here’s how to query the status of the Spooler using WMI from 4NT8;
WMI also allows you to start and stop services. Visit http://msdn.microsoft.com/en-us/library/aa394418(VS.85).aspx for more information.
As noted in the 4NT8 help file, download the "WMI Code Creator" from Microsoft. This is a GUI front-end for WMI, that creates code for C#, Visual Basic .NET, and Visual Basic Script, and was quite useful in learning about WMI.
Joe
If you do a Google search for “unnecessary windows xp services” you will find many web pages with information in regards to this subject.
To see a list of all services currently running on my XP system, I type the following at the 4NT8 prompt;
Code:
sc query > clip: %+ list clip:
In order to print from Windows XP, it is necessary to have the Print Spooler Service started.
To check the status of the Print Spooler from the 4NT8 prompt, I type the following;
Code:
sc query spooler
Code:
SERVICE_NAME: spooler
TYPE : 110 WIN32_OWN_PROCESS (interactive)
STATE : 4 RUNNING
(STOPPABLE,NOT_PAUSABLE,ACCEPTS_SHUTDOWN)
WIN32_EXIT_CODE : 0 (0x0)
SERVICE_EXIT_CODE : 0 (0x0)
CHECKPOINT : 0x0
WAIT_HINT : 0x0
First, you can type;
Code:
sc stop spooler
Code:
SERVICE_NAME: spooler
TYPE : 110 WIN32_OWN_PROCESS (interactive)
STATE : 3 STOP_PENDING
(NOT_STOPPABLE,NOT_PAUSABLE,IGNORES_SHUTDOWN)
WIN32_EXIT_CODE : 0 (0x0)
SERVICE_EXIT_CODE : 0 (0x0)
CHECKPOINT : 0x0
WAIT_HINT : 0x0
Code:
sc query spooler
Code:
SERVICE_NAME: spooler
TYPE : 110 WIN32_OWN_PROCESS (interactive)
STATE : 1 STOPPED
(NOT_STOPPABLE,NOT_PAUSABLE,IGNORES_SHUTDOWN)
WIN32_EXIT_CODE : 0 (0x0)
SERVICE_EXIT_CODE : 0 (0x0)
CHECKPOINT : 0x0
WAIT_HINT : 0x0
Another method to stop the Print Spooler from the command prompt is by using the NET command. From the command prompt, type;
Code:
net stop spooler
Code:
The Print Spooler service is stopping.
The Print Spooler service was stopped successfully.
Code:
echo %?
To start the Print Spooler using the NET command, type;
Code:
net start spooler
Code:
@setlocal
@if %_echo eq 1 @echo off
if defined status unset status
set status=%@wmi[root\cimv2,"select Started from Win32_Service Where Name = 'Spooler'"]
if %status eq True echo Print Spooler is started
if %status eq False echo Print Spooler is stopped
endlocal
As noted in the 4NT8 help file, download the "WMI Code Creator" from Microsoft. This is a GUI front-end for WMI, that creates code for C#, Visual Basic .NET, and Visual Basic Script, and was quite useful in learning about WMI.
Joe