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; p
si.WindowStyle = ProcessWindowStyle.Hidden;
psi.UseShellExecute = true; Process.Start(psi);