Share via

bug with file operations after latest windows 11 update

nikos 15 Reputation points
2025-05-25T11:17:15.7233333+00:00

I am the developer of xplorer2 <Removed>, a file manager like windows file explorer, and I want to report a windows BUG that affects my program.

since the latest windows 11 update (10.0-26100.4061) my program will not show the file copy progress window, a feature that works in all versions from windows 95 and up. The situation is quite technical to explain, so I will try to be succinct

Image

no matter how I initiate the file copy (clipboard copy/paste, drag-drop, even using IFileOperation shell interface), the file is copied but without any visual feedback (the above progress window is missing). I will include some C++ code how am I handling a file paste operation:

IDataObject* source = OleGetClipboard(); 
IDropTarget* target = IShellFolder::GetUIObjectOf(IID_IDropTarget); 
target->DragEnter(source, MK_LBUTTON | MK_CONTROL, POINT(0,0), DROPEFFECT_COPY); 
target->Drop(source, MK_CONTROL, (0,0), &effect); 
// copy works but no progress dialog is shown 

I don't think the particular parameters used in this code block are relevant, as other parts of the program that SHOULD show a file progress indicator, do not show it either

please forward this to someone of the windows shell (file explorer) team for consideration

thank you in advance

Nikos Bozinis

PS. some people see the copy progress window only the first time they copy a file with xplorer2, then it goes silent from the 2nd file operation and for the duration of the program run

Reply

Windows for business | Windows Client for IT Pros | User experience | Other

6 answers

Sort by: Most helpful
  1. Pete Brown (Windows) 105 Reputation points Microsoft Employee
    2025-07-23T15:56:03.14+00:00

    Hi All. I stumbled across this thread through the Q-Dir article pointed to me from a friend. (I work primarily on audio and MIDI, not shell)

    I didn't see anything in Feedback Hub related to this, and so there was no bug logged. Please keep in mind that engineering doesn't usually see forum posts, but detailed Feedback Hub reports with upvotes do make their way into our bug database.

    In any case, through their own testing, the Shell team became aware of the bug and has a fix on the way shortly. Sorry for the trouble this has caused.

    Pete
    Microsoft

    Was this answer helpful?

    2 people found this answer helpful.

  2. Pete Brown (Windows) 105 Reputation points Microsoft Employee
    2025-08-07T16:39:46.99+00:00

    Hi All

    The fix went out in Windows 11 with KB5062660 starting on July 22.

    https://support.microsoft.com/en-us/topic/july-22-2025-kb5062660-os-build-26100-4770-preview-9c5bc200-52b6-4c1a-be70-80df6bbfe9c3

    "Fixed: File operation progress dialogs might stop appearing when displayed from apps."

    Pete

    Was this answer helpful?

    1 person found this answer helpful.
    0 comments No comments

  3. John Kennedy 0 Reputation points
    2025-07-01T20:27:07.18+00:00

    Thank you Michael Crnich. Not the final fix, but at least a workaround for now. Verified as you reported (using Q-Dir) that the files can be dragged from a third party explorer into the windows explorer, and the progress bar is there.

    John

    Was this answer helpful?


  4. John Kennedy 0 Reputation points
    2025-06-16T18:26:02.3966667+00:00

    Thank you. I'm one of the unfortunate ones who after uninstalling KB5063060, the problem remains. I can get a single use with progress bar (most of the time) by running the exe file for the explorer as an administrator. Uninstalling KB5060842 is not an option because it is outside the allowed time limit to roll back. I guess I can try to manually install the older file and renew the option to uninstall it.

    Was this answer helpful?


  5. Deleted

    This answer has been deleted due to a violation of our Code of Conduct. The answer was manually reported or identified through automated detection before action was taken. Please refer to our Code of Conduct for more information.

    1 deleted comment

    Comments have been turned off. Learn more

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.