11 lines
354 B
PowerShell
11 lines
354 B
PowerShell
## Stop the spooler service
|
|
Control-Service -Stop -Name 'spooler'
|
|
|
|
## Delete all print jobs
|
|
LogMsg "Deleting all print jobs from ""${Env:WINDIR}\System32\spool\PRINTERS"""
|
|
Try { Remove-Item "${Env:WINDIR}\System32\spool\PRINTERS\*" -Recurse }
|
|
Catch { LogErr $_.Exception.Message }
|
|
|
|
## Start the spooler service
|
|
Control-Service -Start -Name 'spooler'
|