I need to print files from within a console application. I've found an interesting solution.
When i copy it from a c# console application it prints in colour.
File.Copy("file.pdf", @"\\path\to\printer");
When copying the pdf manually to the printer queue, it prints correctly in black-white.
The printer is set up to print in black-white setting. So it seems to my, it's just ignoring the printer settings.
Is there anything I can do in code to fix it or is it a printer thing?