Running Firefox in the Windows service mode

Posted by Leonid on Stack Overflow See other posts from Stack Overflow or by Leonid
Published on 2010-04-05T21:50:04Z Indexed on 2010/04/05 21:53 UTC
Read the original article Hit count: 154

Filed under:
|
|

I'm writing a server running as a Windows service that by request invokes Firefox to generate a pdf snapshot of a webpage.

I know it is a bad idea to run a GUI program in service mode, but the server nature of my program restricts from running it in the user mode. Running a user-level 'proxy' also is not an option, since there might be no interactive user logged-in on the machine with the server running.

In my experiments Firefox successfully produced pdf when the service was running under a user account that was already logged-in. Obviously it didn't work in other cases: for Local System and user accounts that weren't logged-in. Under LocalSystem with 'Allow service to interact with desktop' option enabled I could see the Firefox started that reports that it's unable to find a printer.

Since it wouldn't be practical to require an opened user session for the pdf server to run, is there any workaround for this except running the whole thing from a virtual machine?

© Stack Overflow or respective owner

Related posts about windows-services

Related posts about firefox