Solved Robotize Command Prompt utilizing blue prism

Status
Not open for further replies.

madisonquinn

New Member
I am endeavor to make a BOT in RPA that will read excel files and afterward attempt to execute some standard commands from commands prompt utilizing the information in exceed expectations documents. I am utilizing Blue Prism for this reason. While I am ready to peruse exceed expectations documents and store the information in accumulation, I am not ready to robotize charge provoke in Blue Prism. I endeavored to utilize a code arrange in c# to make a cmd procedure ( code is given underneath), yet it doesn't perceive the 'Process' class.

System.Diagnostics.Process process = new System.Diagnostics.Process();
System.Diagnostics.ProcessStartInfo startInfo = new
System.Diagnostics.ProcessStartInfo();
startInfo.WindowStyle = System.Diagnostics.ProcessWindowStyle.Hidden;
startInfo.FileName = ".cmd.exe";
startInfo.Arguments = "<command. script>";
process.StartInfo = startInfo;
process.Start();

Need guidance???
 
Status
Not open for further replies.
Top