I have the below command which run batch file , i need to run this batch when i open the aspx page in the machine browser to affect the machine , and not affect server :
ProcessStartInfo psi = new ProcessStartInfo(this.WhiteLabel.Text); psi.RedirectStandardOutput = false; psi.WindowStyle = ProcessWindowStyle.Hidden; psi.UseShellExecute = true; Process.Start(psi);
Replies
Know the answer? Post it — somebody with the same question will find it here.