My Windows 10 computer sets idle times to sleep, e.g., 5 minutes. However, it takes 30 minutes for backing up my computer by Hard Disk Manager 16 Basic. If an idle time during the backup is over the time to sleep, Win 10 goes to sleep and stops the backup process. I know there is a solution to prevent Win 10 from sleeping while running a long time process. That's call this Windows API before executing a long time function:
SetThreadExecutionState(ES_CONTINUOUS | ES_SYSTEM_REQUIRED);
https://msdn.microsoft.com/en-us/lib...(v=vs.85).aspx
Could Hard Disk Manager developers fix this problem by using this API?