0
Answer

Web Application Execute batch file in Client machine

ikrami sami

ikrami sami

9y
489
1

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