var EVI = DOpus.Create().EverythingInterface();
if (EVI.isrunning) {
while (EVI.SendCmd(401) != 1) {
DOpus.Output('Waiting for EV database to be loaded.');
DOpus.Delay(50);
}
DOpus.Output('Autorun : '+EVI.autorun);
DOpus.Output('Indexed : '+EVI.indexed);
DOpus.Output('Disks indexed : '+EVI.roots.count);
DOpus.Output('Version : '+EVI.version);
DOpus.Output('Version2 : '+EVI.SendCmd(0)+'.'+EVI.SendCmd(1)+'.'+EVI.SendCmd(2)+'.'+EVI.SendCmd(3));
}
else DOpus.Output('Everything is not running.');
I don't get the expected values for indexed,roots and version properties:
I'm not entirely sure what the difference could be.
FWIW, I tested it using a portable version (for both versions)
Can anyone else confirm if that could be the cause?