<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>SysSU.com &#187; batch file</title>
	<atom:link href="http://syssu.com/tag/batch-file/feed/" rel="self" type="application/rss+xml" />
	<link>http://syssu.com</link>
	<description>Seldon&#039;s Tech Blog</description>
	<lastBuildDate>Tue, 15 May 2012 22:50:14 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
		<item>
		<title>Stop The Never Ending &quot;Cancel Print Job&quot; (Windows)</title>
		<link>http://syssu.com/2010/stop-the-never-ending-cancel-print-job-windows/</link>
		<comments>http://syssu.com/2010/stop-the-never-ending-cancel-print-job-windows/#comments</comments>
		<pubDate>Thu, 18 Mar 2010 01:44:12 +0000</pubDate>
		<dc:creator>Sel</dc:creator>
				<category><![CDATA[How to]]></category>
		<category><![CDATA[batch file]]></category>
		<category><![CDATA[Job]]></category>
		<category><![CDATA[print spooler]]></category>
		<category><![CDATA[printers]]></category>
		<category><![CDATA[spoolsv]]></category>
		<category><![CDATA[task manager]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://syssu.com/?p=179</guid>
		<description><![CDATA[If you have ever canceled a print job within windows you probably had a time or two when it just froze, and it seemed like it was never going to cancel that print job. According to Ask Reddit this is because Windows is unable to to cancel the print job while the file created from [...]]]></description>
			<content:encoded><![CDATA[<p></p><p style="text-align: left;">If you have ever canceled a print job within windows you probably had a time or two when it just froze, and it seemed like it was never going to cancel that print job. According to <a title="Cancel Print Job by Ask Reddit" href="http://www.reddit.com/r/AskReddit/comments/bdktu/why_does_it_take_around_seventytwo_eons_to_cancel/" target="_blank">Ask Reddit</a> this is because Windows is unable to to cancel the print job while the file created from printing is still in use. To fix this problem Ask Reddit gave the manual and quick batch file version that you can find below.</p>
<p><img class="size-full wp-image-189 aligncenter" title="stop-print" src="http://syssu.com/wp-content/uploads/2010/03/stop-print.jpg" alt="" width="500" height="200" /></p>
<p style="text-align: center;">&nbsp;</p>
<p><span id="more-179"></span></p>
<p><strong>To manually fix the problem do these steps:</strong></p>
<blockquote><p>open task manager, stop spoolsv.exe, navigate to c:\windows\system32\spool\printers\, delete everything in this folder, open the run box, run spoolsv.exe again. print.</p>
<p>- <strong>From: </strong><a href="http://www.reddit.com/r/AskReddit/comments/bdktu/why_does_it_take_around_seventytwo_eons_to_cancel/" target="_blank">Ask Reddit</a></p></blockquote>
<p>Or if you are not that savvy you can create a new text document and save it as <strong>clearprint.bat</strong> with the following code below.</p>
<pre><code>@echo off
echo Stopping print spooler.
echo.
net stop spooler
echo deleting stuff... where? I'm not sure. Just deleting stuff.
echo.
FOR %%A IN (%systemroot%\system32\spool\printers\*.*) DO DEL %%A
echo Starting print spooler.
echo.
net start spooler</code></pre>
]]></content:encoded>
			<wfw:commentRss>http://syssu.com/2010/stop-the-never-ending-cancel-print-job-windows/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
	</channel>
</rss>

