How can I launch the print of a document from C# .NET application ? the Word document already exists in the hard drive. I just wish to start printing that Word document upon the
ProcessStartInfo psi = new ProcessStartInfo(wordFilename) { UseShellExecute = true, Verb = "print", RedirectStandardOutput = false, CreateNoWindow = true }; using (Process p = new Process {StartInfo = psi}) { p.Start(); p.WaitForExit(); }