How to reload printers in coldfusion without restarting service?

To use a network printer ColdFusion is going to need to be running under a domain account that has permissions to network resources. The default user that the ColdFusion Windows Service runs under is localSystem. This user account normally has lots of permissions to the local system but no permissions on the network. The usual … Read more

How to get Printer Info in .NET?

As dowski suggested, you could use WMI to get printer properties. The following code displays all properties for a given printer name. Among them you will find: PrinterStatus, Comment, Location, DriverName, PortName, etc. using System.Management; … string printerName = “YourPrinterName”; string query = string.Format(“SELECT * from Win32_Printer WHERE Name LIKE ‘%{0}'”, printerName); using (ManagementObjectSearcher searcher … Read more