We have a piece of software that attempts to print .tif images using a ProcessStartInfo object. It sets the Verb property to "print" and the FileName property to the path of the image. It then sets the UseShellExecute property to true and executes the Process.Start() method.
However, nothing happens. I created a small test program to list the Verbs associated with .tif images and it only shows "Shell", but not "print".
I cannot modify this piece of software, so is there a way to define or register the "print" verb for .tif image types to allow them to print?