Process processEncryption = new Process();
processEncryption.StartInfo.WorkingDirectory = @"c:\Gnu\GNUPg";
processEncryption.StartInfo.FileName = "gpg";
processEncryption.StartInfo.Arguments = @" -o " + "\"" + path + fileName + "\"" + " --passphrase " + passphrase + " -d " + "\"" + path + fileName + ".gpg" + "\"";
processEncryption.Start();
processEncryption.WaitForExit();
this code work fine if i use this code in windows application
but it does not work at all in windows service .code runs comepletely but does not produce any output "
it seems that this code is not able to start process "gpg" if we run in windows service.
can u help me
thanx in advance
bye