Batch file is not ruuning on IIS
i m using window server r2 2012
I give full control accessibility but i don't what actually happens?
help me.
code:
string command = "c://PExecute.bat";
ProcessStartInfo procStartInfo = new ProcessStartInfo("cmd", "/q /c " + command);
procStartInfo.UseShellExecute = false;
procStartInfo.CreateNoWindow = true;
Process proc = new Process();
proc.StartInfo = procStartInfo;
proc.StartInfo.CreateNoWindow = true;
proc.Start();
Thanks in advance.



