Hi Experts!
I have create a script.bat file and I want to run in web client. It is running in RTC but in Web client i am getting following error
"The operation cannot complete because it uses a feature that is not supported (.NET Framework Interoperability.)"
I have written below code. Kindly help me
Process := Process.Process;
Process.StartInfo.UseShellExecute := FALSE;
Process.StartInfo.FileName := ScriptName;
Process.StartInfo.Arguments :='move ' + Flname + ' ' + newDir;
Process.StartInfo.CreateNoWindow := TRUE;
Process.Start();
CLEAR(Process);
0
Answers
Thanks for one of the solution
Actually I have created script file in order to move file from downloads folder to the predefined folder since the web client automatically downloads file to browser setting - download folder.
This script has to get run as soon as i download the file. Using Job Queue Entry there will be the time gap.