—————————————
@echo off
title Cancelar impressao
echo A cancelar a impressao …
echo.
net stop spooler
cd %systemroot%\system32\spool\PRINTERS
del /f /s *.shd
del /f /s *.spl
net start spooler
echo.
pause
exit
—————————————
—————————————
@echo off
title Cancelar impressao
echo A cancelar a impressao …
echo.
net stop spooler
cd %systemroot%\system32\spool\PRINTERS
del /f /s *.shd
del /f /s *.spl
net start spooler
echo.
pause
exit
—————————————