I have another problem with restoring a backup on the controller from my C# program.
I’m able to restore a backup to the controller by just using the Controller.Restore(path) function.
The problem is that when the function Controller.Restore executes it immediately returns ‘true’ but meanwhile the controller is still restoring / restarting.
The question is, is it possible to wait (using a while loop or event or something) until the controller is finished with restoring the backup.
Code example:
Cursor.Current = Cursors.WaitCursor;
Controller.Restore(path);
// Here I want some code that waites until the controller is finished with restoring
// the backup.
Cursor.Current = Cursors.Default;
Hope on some good answers :smile: