Error code

Windows ERROR_OPERATION_ABORTED

WINDOWSERROR_OPERATION_ABORTED
System Error Code· A POSIX/system errno returned when a system call fails.

What it means

The I/O operation has been aborted because of either a thread exit or an application request..

How to fix it

  1. Retry the operation.
  2. ensure the thread or process is not terminating while I/O is outstanding.
  3. review code that cancels overlapped I/O.
  4. restart the application if the cancellation was unexpected.

Not affiliated with Windows. Answer summarized from the manufacturer's manual linked above; consult that source for the authoritative procedure.