answersLogoWhite

0

type run and type msconfig, services tab, make sure Print Spooler has a checkmark.

User Avatar

Wiki User

15y ago

What else can I help you with?

Related Questions

You are running XPIhave Print Master Gold 8.0is their a newer version of this?

I am running Xp I have Print Master Gold 8.0. Is their a later version of this. If there is what is the cost and how can I get if. Thank you Bernie621@yahoo.com


What does it mean when the printer will not print and message states 'printer spool not installed?

There is a special service responsible for printing it's called "spoolsv.exe". Check your services if it's running. If you want to print anything it must be running.


To have a print server on your network do you have to have a computer running one of the windows server products?

No


When a print job is processed over the internet or intranet must be installed and running in windows server?

when a print job is processed over the internet or an intranet


What do you do if your laser printer is on and you can hear its fan running but it won't print?

Try turning it off then on again.


Do you have to purchase food coupons?

You absolutely do not have to purchase food coupons. If you have a printer or have access to a printer, you can print out any coupon running on the internet.


What is the longest running comic book?

Hogan's Alley by Richard F. Outcault first in print May 5, 1895 .


How is it possible to have a print server running on a client computer?

That's the way it was hooked up by the IT guy so its possible or threw a cable or wireless


Why did Ben leave Boston for Philadelphia?

Because he was running away from his brother, James, and James happened to tell every print shop in town not to hire him.


Where is the print spool'er kept on a computer running Windows 7?

Windows\System32 Access services application to administrate services: %windir%\system32\services.msc


Print spooler stopped working app and was closed?

If you see some system messages like "Spooler SubSystem App has encountered a problem..." or "Operation could not be completed. The print spooler service is not running" it's the big probability that your spooler is broken.


What variable keeps a running total?

The answer is "an accumulator." "A running total is a sum of numbers that ACCUMULATES with each iteration of a loop. The variable used to keep the running total is called an accumulator." It can be any variable you want! It could be total, tot, etc. Here is an example: total = 0 randoms = [random.randRange(0, 99999)] * 100 # Creates a list of 100 random numbers for number in randoms: total += number print(total) # Py3k print statement. Sample output: 35460