When I try to run privoxy, I keep getting this error can't check configuration file 'config.txt: error number 0'
static void StartPrivoxy(Process p)
{
p.StartInfo = new ProcessStartInfo(@"C:\Program Files (x86)\Privoxy\privoxy.exe");
p.Start();
}
The directory should be correct. I can run it from command prompt at C:\Program Files (x86)\Privoxy\ and I can double click it. The config is in the same directory.
I used the same code to run other programs.
Have you tried setting the working directory for the process?