I'm trying to make a method in C# that empties all items in a print queue. Below is my code:
LocalPrintServer localPrintServer = new LocalPrintServer(PrintSystemDesiredAccess.AdministratePrinter);
PrintQueue printQueue = localPrintServer.GetPrintQueue(printerName);
if (printQueue.NumberOfJobs > 0)
{
printQueue.Purge();
}
When this code runs, on the localPrintServer constructor, the app throws this error: "An exception occurred while creating the PrintServer object. Win32 error: Access is denied."
That constructor has a few overloads (including sending no parameters). Trying any of those, I get past that line, but when I get to the printQueue.Purge() call, I get the same access denied message as listed above.
Looking for suggestions of how / what I can do to get around this. I can manually delete the print jobs from my computer. I'm not sure if the app runs with the same access I have nor how to check that.
If you do not mind clearing all queues on the local machine, you can use the following snippet. It requires admin privileges, but will not throw exceptions:
I tried using @mdb solution but it didn't work (Access denied using Framework .NET 4.6.1). So I ended up using the following solution:
//use this as an example to get you started...
This problem is caused by the
GetPrintQueue
method being slightly evil, since it does not allow you to pass in the desired access level. With your code as it is, you are connecting to the print server withAdministratePrinter
rights (which is meaningless), and connecting to the print queue with default user rights. Thus, the operation will fail, even if Everyone has admin rights on the print queue.To fix this, use the constructor for
PrintQueue
instead to specify the correct access level:This may still cause permission errors if you're not running in the context of a member of the Administrators group (or not running with elevated permissions), so surrounding this with a try/catch block is a good idea for production code.
Recently, I encountered the same problem after I upgrade the .net framework from 4.0 to 4.6.1. Oddly enough, my .net application was running on .net 3.5, but somehow it was affected by this change.
Anyway, the way I ran my application was via task scheduler, and the fix is to right click on the task, general, check the box named "Run with highest privileges".
I think if you run it on console, you need to "Run as administrator" when open the cmd window.
Are you running your website as 4.0? I ran into issues when we upgraded our website from 3.5 to 4.0 Framework. The Print Purging functionality stopped working in the 4.0 Framework. Ultimately I ended up creating a web service that used the 3.5 framework and had the 4.0 website communicate the printer it wanted to purge to the 3.5 web service.
(Sorry to revive this thread, this was one of the threads I stumbled onto when I was looking for an answer. Figured I'd post this if it helps someone that runs into the same situation)