Hi all,
I'd like to load/run multiple .dmapp files from an automation script to import functions (SRM). The method below launches the installer, but you still have to click "Upgrade" manually.
foreach (FileInfo file in newFiles)
{
engine.RunClientProgram(file.FullName, true);
}
Is it possible to do this somehow automatically?
Hi Stijn,
In order to install multiple .dmapp packages, you can use the Taskbar Utility using command line options (DataMiner Help). I tried with a batch script and I was able to install multiple .dmapp packages, however I didn't try running it from an automation script.