Hi i am trying to execute bat file in asp.net. it runs in developer/IIS Express but dosnt in IIS. i think there something with permissions. Thanks.
System.Diagnostics.Process myProcess = new System.Diagnostics.Process();
myProcess.StartInfo = new ProcessStartInfo(@"C:\Data\MyFile.bat");
myProcess.Start();
myProcess.Close();