Robotize Command Prompt utilizing blue crystal?

Status
Not open for further replies.

geethasiri

New Member
Hi,

I am attempting to make a BOT in RPA that will read exceed expectations documents and afterward endeavor to execute some standard summons from the order incite utilizing the information in exceeding expectations records. I am utilizing Blue Prism for this reason. While I am ready to peruse exceed expectations documents and store the information in the accumulation, I am not ready to computerize charge provoke in Blue Prism. I attempted to utilize a coding stage in c# to make a cmd procedure ( code is given underneath), however, it doesn't perceive the 'Procedure' 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();

Any assistance or direction the correct way will be valued

Thanks and Regards,
sireesha.
 
Status
Not open for further replies.
Top