ikrami sami

ikrami sami

  • NA
  • 1
  • 1.2k

Web Application Execute batch file in Client machine

Oct 18 2015 8:55 PM

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);