When running latex from C# using Process.Start, I'm getting this error: "latex: A required file system path could not be retrieved." It runs fine from the command line, so I'm not sure why it doesn't run from Process.Start. Has anyone run into this issue?

Edit: Also, this is from ASP.NET!

Thanks!

link|improve this question

54% accept rate
Have you ever found out how to fix this? – Bryan Dec 17 '10 at 22:25
It was a permissions issue where the user in IIS didn't have the correct permissions to run all the required files. – Shane Fulmer Jan 1 '11 at 19:40
feedback

2 Answers

Without seeing more code, my best guess would be to set the WorkingDirectory of your StartInfo class to whatever directory it works from on the command line.

ProcessStartInfo startInfo = new ProcessStartInfo(@"\path\to\latex\latex.exe");
startInfo.WorkingDirectory = @"\path\to\latex";

I've run into this problem before with other EXE's and that seemed to be the fix.

link|improve this answer
I have added it to the Path environment variable, so it runs from anywhere on the command line. I tried this just for kicks, but I'm getting the same error. It seems like LaTeX can't find (or doesn't have permission to use) something that it requires internally. Do I need to set permissions from Process.Start or something? – Shane Fulmer Nov 27 '10 at 4:28
feedback
up vote 1 down vote accepted

The issue was IIS permissions.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.