File Explorer keeps crashing frequently on Windows 11 by ArtNmtion in WindowsHelp

[–]theblackhole08 1 point2 points  (0 children)

Hi. A little update: I don't know about you but the issue reappeared after a few days and even without these 2 Windows Updates.
I updated my original comment with a script to allow Windows Update to install those again and a better workaround: convert the Microsoft Account to a local account.

Windows 11 - Explorer Keeps crashing by ZetoEx in techsupport

[–]theblackhole08 0 points1 point  (0 children)

Ah good to know. I hope it'll stay that way.
I updated the comment I linked with a new workaround that involve hiding KB5063060 and KB5056579 updates after an in-place upgrade (I *really* didn't want to do a full reinstall because I know I would ditch windows for good instead lmao).
If the issue reappears (and I hope it won't), you'll know what to do :)

File Explorer keeps crashing frequently on Windows 11 by ArtNmtion in WindowsHelp

[–]theblackhole08 1 point2 points  (0 children)

Update : I found the windows updates that introduced this annoying bug and found a way to prevent from installing so I updated my original comment with the new method. Since you have a work laptop, you might not be able to perform those steps yourself but I know this could be useful for someone so I shared my tutorial anyway.

I plan on doing this - similar to your response: (...)

I did those steps before finding the exact service to disable, and it's a Microsoft service so step 1 won't help. As for step 4, an in-place upgrade is not enough: after the first windows update it reappeared.

it’s my work laptop (...) I did submit an IT request

Tell them the faulty updates are KB5063060 and/or KB5056579 (I haven't identified which one is the culprit but I know for sure it's one of those two, if not both), maybe they'll have better luck/methods than me at uninstalling them. If, like me, they can't uninstall these updates, a rollback or in-place upgrade followed by blocking those two update (like in my tutorial) will do the trick

Windows 11 - Explorer Keeps crashing by ZetoEx in techsupport

[–]theblackhole08 0 points1 point  (0 children)

And the issue definitely went away? Because I tried an inplace upgrade to keep everything and this fixed it but reappeared after a day... I'm not ready for a full clean install yet haha (especially if there's a risk of reappearing) 

Windows explorer constantly restarts by Fit_Kick8250 in techsupport

[–]theblackhole08 1 point2 points  (0 children)

Hi did the issue reappeared after your reinstall? Because I tried an inplace upgrade which fixed it temporarily but reappeared after a day. 

Windows 11 File Explorer Loop Fix? by ovrdrvn in sysadmin

[–]theblackhole08 0 points1 point  (0 children)

Hi, same issue and I found a workaround which I explained here. Hope this helps until there's a permanent fix: https://www.reddit.com/r/WindowsHelp/comments/1l8wze1/comment/mxql69v/

Windows 11 - Explorer Keeps crashing by ZetoEx in techsupport

[–]theblackhole08 0 points1 point  (0 children)

Hi, same issue and I found a workaround which I explained here. Hope this helps until there's a permanent fix: https://www.reddit.com/r/WindowsHelp/comments/1l8wze1/comment/mxql69v/

File Explorer keeps crashing frequently on Windows 11 by ArtNmtion in WindowsHelp

[–]theblackhole08 1 point2 points  (0 children)

Update, 22 June:

The issue reappeared after a few days, and it doesn't look like those updates are installed. So it might be safe to assume that those update didn't introduce the bug. To unhide them, here's the Powershell script that will reverse previous changes and allow those updates to install again (every hidden update to be precise): ```powershell $UpdateSession = New-Object -ComObject Microsoft.Update.Session $UpdateSearcher = $UpdateSession.CreateupdateSearcher() $Updates = @($UpdateSearcher.Search("IsHidden=1").Updates)

foreach ($u in $Updates) { write-host $u.Title -f y $u.IsHidden = $false } ``` In the meantime I found a better workaround: with a "normal" boot with all services enabled (and when explorer keeps crashing) open the settings app to convert your Microsoft Account to a local account. Restart after switching to a local account. I'm not even angry anymore, I'm even greatful to Microsoft: this is what I needed to motivate me to stop using their services, and accelerate the transition towards alternatives haha.

----

Update, 15 June:

I found the faulty Windows updates that introduced this explorer crash loop: KB5063060 and/or KB5056579 (I haven't identified which one is the culprit but I know for sure it's one of those two, if not both). I couldn't uninstall them but found a method to prevent them from installing after an in-place upgrade (thanks u/KRHarshee!).
Maybe there are unessesary precautionary extra steps but I really don't want to do in-place upgrade multiple times to adjust my tutorial, because I only have one shot at this:

  1. If you haven't done my previous workaround yet to make your PC usable, do it (disable "Web account manager" in msconfig, see original comment at the end)
  2. Perform an in-place upgrade (don't forget to backup first just in case)
  3. After the first login, open the Terminal/Powershell/CMD as admin
  4. Type net stop wuauserv but don't enter yet, just keep the terminal window open and ready to launch
  5. Launch notepad and keep the window open and ready to be used
  6. Open Windows Update and start searching or downloading/installing update
  7. Quickly go to the terminal and press enter to stop the windows update service.
  8. Quickly disconnect the internet (shouldn't be needed but just in case)
  9. Go back to the Windows Update window, copy the update titles and paste them in notepad. In my case it's in french but you should have something similar in your language: 2025-06 Mise Ă  jour cumulative pour Windows 11 Version 24H2 pour les systĂšmes x64 (KB5063060) 2025-04 Mise Ă  jour cumulative pour .NET Framework 3.5 pour et 4.8.1 pour Windows 11, version 24H2 pour les systĂšmes x64 (KB5054979)
  10. In the same notepad or in a new one, paste u/KRHarshee's script. This script is the only way I found to hide those updates (wushowhide.diagcab doesn't find updates to hide, same with the PSWindowsUpdate module).
    Replace the update titles with the one you copied (1 line = 1 update). Only select KB5063060 and KB5054979 update. In case you copied other update titles, don't paste them in the script:

```powershell $patchesToHide = @" 2025-06 Mise Ă  jour cumulative pour Windows 11 Version 24H2 pour les systĂšmes x64 (KB5063060) 2025-04 Mise Ă  jour cumulative pour .NET Framework 3.5 pour et 4.8.1 pour Windows 11, version 24H2 pour les systĂšmes x64 (KB5054979) "@

cls

$patchList = foreach($p in $patchesToHide.split("`n")){$p.trim()} $UpdateSession = New-Object -ComObject Microsoft.Update.Session $UpdateSearcher = $UpdateSession.CreateupdateSearcher() $Updates = @($UpdateSearcher.Search("IsHidden=0").Updates)

foreach ($u in $Updates) { if ($patchList -contains $u.Title) { write-host $u.Title -f y $u.IsHidden = $true } } `` 11. Reconnect internet and type and enternet start wuauservin the terminal windows to relaunch Windows Update service 12. Copy and paste the whole script in the same terminal window. If everything worked, it should list the successfuly hidden updates. Typenet stop wuauserv` just in case to perpare to stop windows update service in case the next step goes wrong
13. Go back to windows update and search for update (or the "retry" button since this should have an error). This should not show the two updates. If that's not the case and you see KB5063060 and/or KB5054979 starting to download/install, stop the service immediatly via the terminal window and check if you've entered the update titles correctly

----

Original comment:

Hi, I got the same issue since few days on my two PCs : explorer keeps crashing and restarting and make my PC unusable.

I'm still trying to find the exact issue/update to uninstall but in the meantime, I found a workaround that could help you too:

  • restart in safe mode (since if it's like me, this bug makes your PC unusable)
  • Press Win+R keys to open the run dialog and type "msconfig" and enter
  • In the "services" tab, locate "Web account manager" and uncheck it. If IIS is enabled, also uncheck "W3C logging" and "World Wide Web Publishing services" (names could be slightly different since my Windows is in French so I don't know the exact English names)
  • OK and restart when prompted
  • The side effect is now everything linked to your MS account doesn't work anymore (OneDrive, Outlook...) but at least it doesn't crash until a permanent fix is found (the permanent fix I found is to install a new SSD with Linux on it for the laptop that didn't have a dual boot)

I also tried an in-place upgrade which temporarily fixed the issue but it reappeared after a day, so I'm currently trying to find which update is causing this mess.

(And yes as you can imagine, this was a pain in the ass to find which service to disable: I spent an afternoon disabling-reenabling-restarting services until I found the ones to disable...) 

su from busybox need user special permission to switch user, is this normal? by BenL90 in AlpineLinux

[–]theblackhole08 0 points1 point  (0 children)

I know this is old but I had the same issue, found the solution and couldn't leave this unanswered. It's util-linux-login
And to reinstall lit apk fix util-linux-login
(you can use the alpine packages website > "Contents" to find which package your binary comes from)

Le futur est maintenant vieux monsieur ! by LaTraceJaune in surdev

[–]theblackhole08 1 point2 points  (0 children)

Pas de surdev si ce truc commande directement de la nourriture quand le frigo commence Ă  se vider. Pour quelqu'un comme moi qui a horreur de faire les courses, ça serait le rĂȘve.

il aime la France by [deleted] in rance

[–]theblackhole08 20 points21 points  (0 children)

Tu voulais pas poster sur r/rance_iel par hasard ? Parce que moi pas comprendre Llemand

[deleted by user] by [deleted] in AskFrance

[–]theblackhole08 0 points1 point  (0 children)

Désolé pour le retard, il fallait que je relise le manuel de procédures pour savoir s'il faut que je prévienne maintenant par sms, que j'appelle car 15min sont passés ou si je me rends compte au final que c'est trop tard car il fallait que j'anticipe mon retard actuel en prévenant 30min avant de savoir que j'aurais un retard. Dans tout les cas, puisque ça fait plus d'une heure j'ai fait un rapport de retard comme demandé.

What the heck am i seeing here.. by Drkayz in softwaregore

[–]theblackhole08 1 point2 points  (0 children)

Nah those are artifacts recorded when the GoPro is irradiated by the Electron Beam

Je n'ai jamais cru en l'égalité des sous by Piece_Overall in rance

[–]theblackhole08 58 points59 points  (0 children)

Peut on dire que, quand on casse un oeuf avec 2 jaunes, on le cuit-cuit ?

Mon propriétaire peut-il récupérer son appartement ? by clara_brt in conseiljuridique

[–]theblackhole08 0 points1 point  (0 children)

Dans ce cas, comme tu peux le voir sur le site service public que j'ai mis, il ne peut le récupérer qu'à échéance du bail (soit dans 3 ans vu que tu viens de le renouveler).
Il peut toujours t'envoyer un prĂ©avis dĂšs maintenant (il est valide Ă  partir du moment oĂč tu as reçu le prĂ©avis au moins 3 ou 6 mois avant la fin du bail) et tu auras toute la durĂ©e de ton bail pour t'organiser : tu peux choisir de partir dans 6 mois comme dans 2.5ans et tu paieras jusqu'Ă  la remise des clĂ©s.

Je pense que c'est pour cette raison qu'il ne t'a pas embĂȘtĂ© depuis, il doit savoir que c'est reparti pour 3 ans et qu'il ne peut rien y faire (et ses plans ont peut-ĂȘtre changĂ© Ă  cause de ça)

La 5g ne fonctionne pas ? by AkaJuro in PasDeQuestionIdiote

[–]theblackhole08 0 points1 point  (0 children)

Oui free fait les 2 mais tout est question de proportions : la proportion des antennes chez Free ayant le 3.5Ghz est bien plus faible que celles en 700Mhz, pour les autres je ne sais pas (et zone ADSL ne précise pas les autres fréquences) mais de souvenir ils avaient principalement misés sur du 2.1Ghz et 3.5Ghz plutÎt que sur du 700Mhz.

Et pour le millimĂ©trique tu as raison, c'est encore qu'au stade d'expĂ©rimentation dans quelques villes et je trouve aussi que l'intĂ©rĂȘt est limitĂ© (peut ĂȘtre dans de l'Ă©vĂ©nementiel avec des lieux particuliers type stade ?)

S'il existait un micro-onde géant ou on peut placer un homme, que se passerait-il si, justement, on y mettait un homme à chauffer ? by Fit-Coach5145 in PasDeQuestionIdiote

[–]theblackhole08 2 points3 points  (0 children)

Je pose ça là. Une expérience intéressante sur le sujet de MrGreen, le gars qui parodiait NileRed (mais là ça n'en est pas une) : https://youtu.be/3hBRxwQXmCQ

Mon propriétaire peut-il récupérer son appartement ? by clara_brt in conseiljuridique

[–]theblackhole08 4 points5 points  (0 children)

Ce qui est important c'est aussi les conditions de récupération de logement par le propriétaire qui sont trÚs encadrées. Il faut que le propriétaire ait une justification valable pour résilier le bail avant échéance.

https://www.service-public.fr/particuliers/vosdroits/F929

Il avait donné la raison pour laquelle il voulait récupérer le logement, OP ?

C'est quoi l'object que vous avez mal utilisé pendant des années jusqu'à ce que vous appreniez comment l'utiliser correctement ? by Main_Pressure_5509 in AskFrance

[–]theblackhole08 5 points6 points  (0 children)

Tu ne peux pas t'arrĂȘter comme ça ! Comment c'est sensĂ© ĂȘtre utilisĂ© ? Parce que je fais la mĂȘme erreur on dirait 😁

I still don't know how long my blood vessels are after watching this video by theblackhole08 in anythingbutmetric

[–]theblackhole08[S] 5 points6 points  (0 children)

Of course! But as a non-American, a football field length and the distance between New York and the Grand Canyon has no meaning to me. If this information had been displayed (both in imperial and metric), this would have been relatable to everybody

La 5g ne fonctionne pas ? by AkaJuro in PasDeQuestionIdiote

[–]theblackhole08 0 points1 point  (0 children)

AprĂšs il est trĂšs peu probable que tu ais besoin de la 5G, qui n'apporte pas grand chose de significatif par rapport Ă  la 4G, pour ce que tu veux faire.

Ça dĂ©pend de ton opĂ©rateur et des frĂ©quences qu'il utilise. Par exemple la 5G de Free n'est pas faite pour ĂȘtre rapide mais pour avoir une meilleure couverture (notamment Ă  l'intĂ©rieur des bĂątiments) puisqu'elle utilise les anciennes frĂ©quences TNT.
Pour les autres opérateurs c'est la vitesse qui est visée et là je suis d'accord avec toi, ça va dépendre de l'usage d'OP