Тёмный

Blinking Taskbar Partial Fix - Windows 10 

Misha
Подписаться 865
Просмотров 130 тыс.
50% 1

Partial Fix:
1. Ctr + Shift + Esc
2. Taskbar
3. Sort by CPU
4. Select wsaapx app and End Task.
My Windows theme is orange, which is why the background is that color. You might have a different color depending on your personal theme. Please let me know if you find a permanent fix and I'll pin it in the comment.
I hope it helps someone else out there!

Опубликовано:

 

15 окт 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 180   
@MishaCatz
@MishaCatz 2 года назад
@Shinos in the comments found 4 solutions on reddit from someone named Mirrrek. My solution was to uninstall all games and apps from the XBOX app. Here are the other solutions: Apparently, it is caused by the *Storage Service* (*storsvc*) starting before login. A simple solution would be to disable it, but then any Microsoft Store and Xbox apps wouldn't work which kinda sucks. I put together a janky fix, that stops *storsvc* from running on startup, then launches it a few seconds later, when the user is already logged in. # Step 0 - Properly boot into your desktop I suppose you already figured this out, but in case you didn't, to stop the flickering, hit *Ctrl + Shift + Esc* to open up Task Manager, from there you can find the task "wsappx" (on the bottom, if sorted alphabetically), that's what's causing the system hang. Select it and *End task*. Hopefully, this makes it go normal. Unfortunately, after a reboot, it'll come back. So let's fix that. # Step 1 - Stop storsvc from running on startup First, let's set the *storsvc* service startup type to manual, so that it doesn't run on system boot. Open up a Command Prompt as administrator (*Win + S -> cmd -> Run as administrator*). Paste in this line and hit enter: sc config storsvc start=demand # Step 2 - Remove triggers starting storsvc Now, even though it won't run by itself, some events will still start it up. If we don't want it to run at all, we'll need to remove its triggers, so that not even events can run it. *Warning: This deletes all triggers of the storsvc service, this action is irreversible.* Paste it this and hit enter: sc triggerinfo storsvc delete Now that they're gone, we're sure that the only way it would start is when we tell it. # Step 3 - Create a task to run storsvc after startup Ironically, after all this work to make it not run on startup, we'll do even more work to make it run again. This time though, we will give it some delay, so that we have time to login into the desktop before it starts. That way it won't cause our screen to flicker and we'll still be able to use the Microsoft Store and Xbox apps. We will create a task, which will run some seconds after startup (see explanation below). To do that, paste in this line of code and hit enter: schtasks /create /sc onstart /tn "StartStorageService" /tr "C:\Windows\System32 et.exe start storsvc" /ru system /rl highest /delay 0000:30 Explanation of the arguments: * */create* \- Tells the task scheduler that we want to make a new task * */sc onstart* \- Tells it to run the task when the system starts up * */tn "StartStorageService"* \- The task name, used to identify it * */tr "C:\\Windows\\System32\ et.exe start storsvc"* \- This is the magic line, it's what gets executed when the task runs. *net.exe* is a program to modify services and it's what we use to start up the *storsvc* service * */ru system* \- This makes the command execute as system (not under a user account) * */rl highest* \- To modify services, we need administrator (highest) privileges, this makes sure we have them when executing the command * */delay 0000:30* \- Another magic line. This delays the task execution by 30 seconds, which gives us enough time to login In case 30 seconds isn't enough, or it is way too much, you can change that however you want. Just make sure you use the correct format *mmmm:ss* (four places for minutes, two places for seconds). For example, a 5 minutes delay would be `/delay 0000:05`, while a 2 minute delay would be `/delay 0002:00`. In case you'll later want to remove the task, you can use the command below: schtasks /delete /tn "StartStorageService" That's it! Reboot your computer and hopefully, the issue is fixed. If this doesn't work, or if you have any questions, let me know.
@hazmatcinemaxxx
@hazmatcinemaxxx Год назад
I will try this fix if I need to and see what happens. Worst case is I mess crap up and format my drive to reinstall windows 🙁
@Sefixx
@Sefixx Год назад
Genius, it works for me. For the non-tech people. Just write this 3 in seperate CMD prompt and reboot your system. sc config storsvc start=demand sc triggerinfo storsvc delete schtasks /create /sc onstart /tn "StartStorageService" /tr "C:\Windows\System32 et.exe start storsvc" /ru system /rl highest /delay 0000:30
@nuriFPS
@nuriFPS Год назад
@@Sefixx Thank you very much. Subsribed to you king
@raihandwiananda8356
@raihandwiananda8356 Год назад
how to open up command prompt if i cant even click anything on my pc because its blinking, win + r, win + x, all of that still cannot open up comman prompt. the only thing i can do is just ctrl shift del only. please help me
@MishaCatz
@MishaCatz Год назад
@@raihandwiananda8356 You could try these methods: Open the Run menu with Windows Key + R, then type "cmd." Press "Enter" to open the regular Command Prompt, or Ctrl + Shift + Enter to open as an Administrator. Another way is to press Windows Key + X, use the arrow keys to select "Command Prompt," then press Enter.
@Spazyfn
@Spazyfn Год назад
I just had this problem every time I go the Home Screen I can’t click on anything it’s turning off and on so quick so I just turn it off by hitting the button. After that I clicked restart by holding Shift as I click restart. Don’t let go shift till it brings you to the blue screen then choose “continue” then it just brought me back to the Home Screen and now it doesn’t flick. Idk how this happened it’s the first time for me
@BaranKaymakci
@BaranKaymakci 10 месяцев назад
i have the same issue did you fix it?
@Chatrawr
@Chatrawr 7 месяцев назад
What if the task bar is empty and there’s a flickering white screen. And when you try to open a website or app it just closes it.
@monty_0872
@monty_0872 6 месяцев назад
Did you get the solution 😢?
@S4_QUATTROPOWER
@S4_QUATTROPOWER 10 месяцев назад
Here is a fix that might help, Open task bark, create new task, make sure to tick the box for admin access and in blank box type powershell, hit enter, it will open power shell, ( Blue screen) kinda like cmd, on there paste this command ==========> sfc /scannow hit enter, it will repair your windows and most of the time its due to corrupted files or high refresh rate resolution, this will fix all that, make sure to restart your pc/laptop. If it worked hit that like button.
@christianhorn3075
@christianhorn3075 10 месяцев назад
Think it actually worked, love u man
@S4_QUATTROPOWER
@S4_QUATTROPOWER 10 месяцев назад
@@christianhorn3075 🤝🫶
@vyomoon
@vyomoon 9 месяцев назад
It said it cannot repair some of the corrupted files. It started happening after i shutted down my pc but then clicked cancel. When i restarted it those blinks started happening.
@scragglemuffinenthusiast
@scragglemuffinenthusiast 8 месяцев назад
It didn’t work and then said it repaired files it didn’t
@AndresHernandez2
@AndresHernandez2 6 месяцев назад
It solved some but it said some corrupted files could not be solved and it kept flickering on reboot
@Medude69
@Medude69 28 дней назад
Mine keeps going black and I can’t even interact with anything and no one has a video about it my icons are glitching out and I can’t press anything
@imashok
@imashok 2 дня назад
Same
@Izumi2704
@Izumi2704 2 года назад
It's not working to me dude😭
@np_aadarsh
@np_aadarsh 11 месяцев назад
Thx bro u helped me a ton my winfows taskbar and menu wasnt working now it worked
@qausainzafar2737
@qausainzafar2737 Месяц назад
I had same problem..i tried this but problem didn't solve. Then i testes keyboard online by using iobit keyboard testing and F6 key was problem creator. Then i installed sharpkeys s/w and disabled this key and finally i came out of this mess.
@wpnmod
@wpnmod 2 года назад
this prossec is dont ened and the servics i cant disable it please help but this is my problem
@frendzydevocion7769
@frendzydevocion7769 Год назад
when i end task wsappx it just says i need to be administrator
@TruspLMAO
@TruspLMAO Год назад
When I end the process of wsappx nothing happens
@jenggo7011
@jenggo7011 Год назад
Wait, its not instantly for me, maybe that's help
@HassYass
@HassYass Год назад
​@@jenggo7011for how long ?
@HassYass
@HassYass Год назад
Did it work ?
@flor3224
@flor3224 4 месяца назад
I can't get the task manager to open. When I try it just gets stuck loading. What should I do?
@caydensafk2481
@caydensafk2481 Год назад
Can someone help me when i try to open taskbar it closes immediatly and my mouse cursor isnt working at all it its freezed too
@chrisnaidoo6691
@chrisnaidoo6691 2 месяца назад
The file wsappx doesn't exist on my computer even though it is the same Windows 11 as yours
@akmalhasan7549
@akmalhasan7549 2 месяца назад
thats windows 10 lmao, not 11
@codelawq9
@codelawq9 Год назад
When I change the color of my taskbar that I want it will not change (Help please)
@90Degrees_
@90Degrees_ 3 месяца назад
I've had this problem for a while but for some reason if I wait around 5 minutes it goes away and my pc is normal.
@MishaCatz
@MishaCatz 2 месяца назад
Yeah thats what happened to me as well. It would take longer as time went by. I'm still wondering if it was either overclocking my ram or the xbox games that I had downloaded thay caused this issue
@90Degrees_
@90Degrees_ 2 месяца назад
@@MishaCatz I have a sneaking suspicion that it's my ram. Because when I try and turn on xmp it crashes my pc.
@prophead62
@prophead62 Год назад
there are multiple wsappx processes running. if you kill one of them, another starts up immediately. Sorry, not fixed this way
@MishaCatz
@MishaCatz Год назад
Ah didn't know there were more. Let us know if you find another solution. Some comments in here explain alternatives
@jenggo7011
@jenggo7011 Год назад
Have any of you found solutions?
@warfrequency8984
@warfrequency8984 9 месяцев назад
you have any solution bro?😢​@@jenggo7011
@Rimuuru
@Rimuuru 8 месяцев назад
I have this exact problem but my mouse won't respond
@MishaCatz
@MishaCatz 8 месяцев назад
Try using Tab key and arrows to navigate the interface. Spacebar and Enter to select thing. You can also press W multiple time when you arrive to the process to find the wsaapx. When you'll have wsaapx selected, press the Delete key on your keyboard.
@Rimuuru
@Rimuuru 8 месяцев назад
@@MishaCatz well i already tried this days ago but the screen keeps on flashing every second so it resets the task manger all the way back to the top and i did manage to do what you said yes it did stop the screen from flashing the problem is that the task bar wont show and my mouse will still not move and respond in any way and i already checked if the usb port is dirty it was not and i already checked if the mouse was faulty it was not but luckily im getting my pc fixed in friday so thank you for trying to help me but im afraid its already to late
@MishaCatz
@MishaCatz 8 месяцев назад
@Rimuuru Ah that sucks, it might be an issue on top of this one. I'm guessing the only solution would be to go in the BIOs to tweek settings or boot in safe mode. Good luck on having it repaired!
@OmbaiMohamad
@OmbaiMohamad Год назад
There is no wsappx here
@outofcontextvids.
@outofcontextvids. 8 месяцев назад
There is
@dniiall
@dniiall 9 месяцев назад
my pc keep flashing and blinking can u help me ?
@MishaCatz
@MishaCatz 9 месяцев назад
I wouldn't know if it's the same issue. Have you found a solution yet?
@RetrixUniverse
@RetrixUniverse 3 месяца назад
Make a flash drive windows install. Like this you don’t need to disable anything you may need. It’s safer this way. You also won’t lose your data. It just reinstalls windows. Follow and read all options carefully .
@Banan_officiall0
@Banan_officiall0 Год назад
Task menager is not opening :(
@TOMCLARKE08
@TOMCLARKE08 4 месяца назад
Bro i can't see that option in my pc what do I do😭
@VlexCrowley
@VlexCrowley Год назад
I have the same problem but i can't access the task manager, the task bar keeps flickering and i can only do (alt+ctrl+delete) but I can't do nothing further What should i do?
@MishaCatz
@MishaCatz Год назад
Have you tried Ctrl + Shift + Esc? It open up task manager straight away instead of showing the menu to choose the task manager. On task manager you want to end task the "wsaapx" app.
@VlexCrowley
@VlexCrowley Год назад
@@MishaCatz well i tried everything nothing worked , it was a virus screwing the system up so i deleted everything (i had a backup of my necessary files) and installed a new windows
@VlexCrowley
@VlexCrowley Год назад
@@MishaCatz don't ever try to crack a program unless you try it in a virtual machine or sandbox xd
@Rileybobs14
@Rileybobs14 Год назад
Task mgr isn't even comin up for me
@rogercolque
@rogercolque 11 месяцев назад
pleaso all if you dont found a solution my case work unninstall program "stardock start10" or a program like that. this have interaction with explorer and windows task
@RohitKumar-ov2zf
@RohitKumar-ov2zf 10 месяцев назад
Will this problem solve if I format my pc?
@AndresHernandez2
@AndresHernandez2 6 месяцев назад
Most likely but im wondering how to do that myself lol
@TheDutchman109
@TheDutchman109 4 месяца назад
Thank you sir! 2 years old but it still helped me 👍
@MishaCatz
@MishaCatz Месяц назад
Glad it helped!
@XxStonedImmaculatexX
@XxStonedImmaculatexX 29 дней назад
didn't work for me :(
@DRIBBLER.
@DRIBBLER. 6 месяцев назад
clean your desk bro wtf
@rogercolque
@rogercolque 11 месяцев назад
hi anyone found a solution or get some IT solution $$ paiid remotly this problem ocurre after windows update
@TheCoolDavid8104
@TheCoolDavid8104 Год назад
It dosen't work
@KingNibh
@KingNibh Год назад
I have this issue currently, I believe anyways. I start up my computer it flickers like this I can’t even log in because it does this anything that pops up closes immediately.. anyways I troubleshoot on restart and decided too reset pc now it does it during restart after the location and time zone part and I’m in a continuous restart loop. I hope there’s a more in depth fix for me! I appreciate the help from everyone and I wish I came across this video sooner
@KingNibh
@KingNibh Год назад
Actually after the time zone and location part of the reset, I click next it asks for internet connection too do the update and I do so I click next and a white screen flickers like there is supposed too be something popping up there too continue my reset. And then it just keeps saying One moment… until it restarts and ends up at the same screen
@MishaCatz
@MishaCatz Год назад
@@KingNibh you might have to go in your BIOS by holding an F key and boot safe mode to do any modification. Can't help you further 😕
@5gadigajanisavecmamina979
@5gadigajanisavecmamina979 Год назад
To my man, ty to my man
@Thamewali
@Thamewali 2 года назад
Not working on PC 😞
@nikhilsharma6396
@nikhilsharma6396 Год назад
Did you find the solution? Bhai
@nichollas8998
@nichollas8998 10 месяцев назад
ughh it doesn’t do anything when i do that
@MishaCatz
@MishaCatz 10 месяцев назад
Darn that sucks, maybe it's an additional issue 😕 Good luck!
@omargaber4536
@omargaber4536 3 месяца назад
Helped dramatically
@MubassamAli
@MubassamAli Месяц назад
Sir it's not working 😢
@farquleetahsan9382
@farquleetahsan9382 Год назад
And then restart it your screen would be fixed
@VikramKumar-vp8oc
@VikramKumar-vp8oc 6 месяцев назад
Ctrl+ alt +del then taskbar then in file search system and run then control panel then program and then uninstall newly updates of windows. Then restart My problem solved. I forgot the password of my pc Id but this simple trick I got myself. Perfect and easy method no data lost 😅😅😅😅
@myckelantonico1407
@myckelantonico1407 Месяц назад
What do i do if i forgot my password
@NightFlareProd
@NightFlareProd 2 года назад
My pc not want start to os :( (i hvae 4gb ram bad procesor and bad graphic):((((
@MishaCatz
@MishaCatz 2 года назад
Might be another issue then this then
@NightFlareProd
@NightFlareProd 2 года назад
@@MishaCatz i preistaled my windows 7 to win 10 , but when we were supposed to delete the windows.old folder as an update, it started washing the black screen & win xp cursor with flashing taskbar, then I tried to reset the pc a long time ago, but it's the same, so I'm already using the command (sfc /scanow)
@Erikbarbaric
@Erikbarbaric 2 года назад
This video got recommended to me front and centered so now I'm worried this is about to happen to me
@MishaCatz
@MishaCatz 2 года назад
Haha I hope not! Apparantly it was a windows update, which many solution suggested to rollback the update, but it's been so many month of that.
@martinsuarezcruz2995
@martinsuarezcruz2995 2 года назад
This is happening to me to and it won't go away could you help me
@MishaCatz
@MishaCatz 2 года назад
Check the pin comment, remove all apps/games from the Xbox app. Its a microsoft store issue
@martinsuarezcruz2995
@martinsuarezcruz2995 2 года назад
@@MishaCatz no like I fully rest my PC factory reset and I loaded it and that happened
@zKarina
@zKarina 2 года назад
@@martinsuarezcruz2995 this is also happening to me
@martinsuarezcruz2995
@martinsuarezcruz2995 2 года назад
@@zKarina yea have you fixed it?
@Bummity
@Bummity 2 года назад
@@martinsuarezcruz2995 any update??? di u find a solution cause its currently happening to me
@igryans
@igryans 2 года назад
Thanks so much
@MishaCatz
@MishaCatz 2 года назад
Did it work? I've been wondering if it was only me from the other comments
@igryans
@igryans 2 года назад
@@MishaCatz it works but I just got it up and running so idk if there’s any drawbacks
@taylorrussell2812
@taylorrussell2812 Год назад
Thos solved my problem. Thank you! As mentioned in this video close all the wsappx then ctr+alt+delete and at thw bottom corner -restart your pc It will restart and work as the video suggests.
@Shadowgamer_S
@Shadowgamer_S 9 дней назад
Bro it don't work
@beaumill
@beaumill Год назад
this literally just happened to me although before hand my whole screen started flickering. I turned my laptop off then turned it back on again and now the taskbar is flickering.. is this a virus??
@MishaCatz
@MishaCatz Год назад
Nah it's not a virus, it's window's having some weird issue.
@beaumill
@beaumill Год назад
@@MishaCatz if i just upgrade to windows 11 will it stop
@MishaCatz
@MishaCatz Год назад
@@beaumill That should help a lot
@hussinking4900
@hussinking4900 Год назад
.
@dylanreynolds9653
@dylanreynolds9653 Год назад
I'm in Windows 11 and it's happening to me
@BexruzbekTulaboyev
@BexruzbekTulaboyev 10 месяцев назад
Thank you very much ❤❤❤🎉🎉🎉
@karnasinghyadav
@karnasinghyadav 26 дней назад
Thank You
@AnimeFlex534
@AnimeFlex534 Месяц назад
Thanks
@sharoonibrahimkhan4712
@sharoonibrahimkhan4712 Год назад
I dont have wsappx showing
@MishaCatz
@MishaCatz Год назад
Filtering by CPU or Name? Maybe it's a different problem
@manohars2396
@manohars2396 Год назад
Not working
@vlubbers
@vlubbers 4 месяца назад
Yo im sorry bro but please help me i need help
@MishaCatz
@MishaCatz 4 месяца назад
What is the issue?
@treay55k20
@treay55k20 Год назад
did not work
@plpl2454
@plpl2454 Год назад
Any of you guys actually renamed your pc and deleted some windows update than it might happen
@beaumill
@beaumill Год назад
i renamed mine and it happened
@beaumill
@beaumill Год назад
and also deleted a windows update
@dilshan3714
@dilshan3714 Год назад
😍 great video. Keep it up 😍
@efrenguibao9037
@efrenguibao9037 Год назад
Simple solution is; check on notification if there are available updates then click or install updates. It will permanently solve that problem.
@efrenguibao9037
@efrenguibao9037 Год назад
In addition, if ever your screen is still blinking... Try CTRL ALT DELETE, then click shutdown, then you will see options like; restart and update or shutdown and update. Click one of those options, then wait for a while until the update is finished. The point here is, don't forget to install all available updates to avoid that kind of problem.
@jakobloney2473
@jakobloney2473 Год назад
any tips on how to get past the blinking part, when i close the “wsappx” my screen doesn’t go back to normal, i was informed that it might be a failed windows update how can i fix it?
@pinupshox5303
@pinupshox5303 Год назад
​@@jakobloney2473 have ufind any fix??
@jakobloney2473
@jakobloney2473 Год назад
@@pinupshox5303 Reinstall windows my brotha, That’s what fixed the problem
@pinupshox5303
@pinupshox5303 Год назад
@@jakobloney2473 well tried reinstalling but same thing. Doesnt work
@farquleetahsan9382
@farquleetahsan9382 Год назад
Press ctrl +alt +shift
@WelsieJeanMahinay-ny2tn
@WelsieJeanMahinay-ny2tn 10 месяцев назад
thankyou so much. working ❤️❤️❤️
@TRASHBOI-r7y
@TRASHBOI-r7y 10 месяцев назад
bro i love u thx i could fix this by disabling storsvc but in a much simpler way if anyone need it tell me and i will reply :')
@GebFN
@GebFN 9 месяцев назад
I need help please and thank you
@qausainzafar2737
@qausainzafar2737 Месяц назад
Kindly tell me
@hussinking4900
@hussinking4900 Год назад
Add 5- restart the pc . You forgot my friend good job
@n8lbv
@n8lbv 9 месяцев назад
Pretty much the same old same old. Nobody and I mean NOBODY knows how Windows actually works anymore and has any clue on how to actually FIX anything. Reinstall the OS is everybody's solution to everything rather than get an understanding and fix anything. And windows is such a fragile mess and easily breaks or even breaks itself. And as always, video does not apply in my case. In task manager there is no option to kill wsappx without shutting down the system (Windows 10 Pro 22H2 up to date) And if anyone mentions SFC /scannow or DSIM there are going to get hit with an old shoe. Good video though and killing it somehow worked for you until you reinstalled. Thanks for sharing. Every little piece of information sometimes helps. But usually it's all useless rabbit holes and everybody just reinstalls which is sad. Nobody gets to learn how it actually works or what the pieces do.
@MishaCatz
@MishaCatz 9 месяцев назад
Yeah that sucks there aren't many help around for something that is so popular. I actually contacted Microsoft a couple of time on their help site and they did help me figure out some areas for free. One thing that I haven't realised back then is that I messed around with overclocking my RAM while not knowing my motherboard had a limit. This caused my PC to bluescreen many times and I wonder if that was not the main cause. Have you overclocked your PC in the BIOs? Other than contacting Microsoft chat help and BIOs, not sure what's going on.
@daro555ify
@daro555ify 8 месяцев назад
@@MishaCatz I have same problem. I mean ... Every time I install a game "state of decay 2" I get this issue. When I reboot in safe mode disable storage services, then reboot in normal mode without this service my windows turned on without any issues. Then I uninstalled the game, turned on the service and my pc works perfectly fine. The only thing is I can't install this game (not a big deal for me). I didn't overlock my pc, so this is not the problem. Fun fact, after this I wasn't able to install this game again, I got some error messages. I use some gaming repair tool. This allowed me to install the game again, but I got the same issue as at the beginning.
@daro555ify
@daro555ify 8 месяцев назад
@@MishaCatz to be more precise, I install the game from Xbox app with game pass. This issue is related to memory service and Xbox app (probably some gaming services)
@MishaCatz
@MishaCatz 8 месяцев назад
@daro555ify yeah uninstalling Xbox Games from Game pass definitely helped this issue. Very odd.
@daro555ify
@daro555ify 8 месяцев назад
@@MishaCatz yeah in my first scenario I uninstalled the Xbox app and games from it but now I only have to uninstall this particular game which I installed by using Xbox app
@hussinking4900
@hussinking4900 Год назад
بس سوي restart من تكمل الخطوات الموجوده بلفيديو وبلدسكربشن هسه تشتغل الحاسبه مبيها شي just restart the computer when you finally do what is he saying in the video❤️❤️🌹❤️👏👏
@skypos498
@skypos498 10 месяцев назад
ولد
@smdurjoy4745
@smdurjoy4745 Год назад
Please help me 😢😢
@gurvinderdullt8164
@gurvinderdullt8164 Год назад
Update your gpu
@Riddle-Daily
@Riddle-Daily 2 года назад
:((( I can't even open y Task manager
@D4MEG
@D4MEG 2 года назад
Did u find a solution???
@Riddle-Daily
@Riddle-Daily 2 года назад
@@D4MEG I just had to reset my entire PC to do it because it could be caused by a virus if it's still a no then it maybe because of ur CPU system so I might need to get it checked I don't rlly have much time :(
@D4MEG
@D4MEG 2 года назад
@@Riddle-Daily thx bro , I tried to rest my pc but can’t do that , can’t do any fix for my laptop. I think I will send it to the technician.
@sagarkumargautam4251
@sagarkumargautam4251 2 года назад
@@D4MEG same 🤧
@D4MEG
@D4MEG 2 года назад
Sagar Kumar Gautam i have to format the c drive ( system drive )
@hazmatcinemaxxx
@hazmatcinemaxxx Год назад
I had the same issue except my background color was blue. I let it sit flashing for like 10-15min and it eventually loaded into windows 10. This was a couple hours ago and I'm scared to reboot right now so I'm keeping pc on all day and will check tomorrow to see if it happens again. That process was at the top of my task manager as well when it was happening but I didn't end the task because I thought it would shutdown the pc. I will try it next time if it happens again.
@MishaCatz
@MishaCatz Год назад
Yeah it does that and unfortunately will do the same thing the next day. Some day the issue isn't there but often it is. Some days it take a couple seconds some other days many minutes. Check the pinned comment if you really want to get rid of it. I was dealing with that issue for 6+ months lol
@hazmatcinemaxxx
@hazmatcinemaxxx Год назад
@@MishaCatz Did you ever try a clean windows install? Kind of tempted to do it but not sure if it will fix.
@MishaCatz
@MishaCatz Год назад
@@hazmatcinemaxxx i reinstalled windows and kept my harddrived intact. I chatted with Microsoft support and they are pretty useful and fast. They sent me the right links to their windows reinstallation so it could be worth a try. This issue is somehow linked to the xbox games
@hazmatcinemaxxx
@hazmatcinemaxxx Год назад
@@MishaCatz Yeah it is definitely linked to that. I recently installed Flight Simulator from the Xbox app and this happens a day later. I just found that Reddit post you mentioned and I copied and pasted everything into task manager. I will post tomorrow after I reboot my PC to tell you if it was fixed. Thanks for pointing me in what seems like the right direction :)
@hazmatcinemaxxx
@hazmatcinemaxxx Год назад
@@MishaCatz The fix worked thanks!
@nurameliasaririau6968
@nurameliasaririau6968 3 месяца назад
Thank you so much sir.
@VikramKumar-vp8oc
@VikramKumar-vp8oc 6 месяцев назад
Ctrl+ alt +del then taskbar then in file search system and run then control panel then program and then uninstall newly updates of windows. Then restart My problem solved. I forgot the password of my pc Id but this simple trick I got myself. Perfect and easy method no data lost 😅😅😅😅
@NightFlareProd
@NightFlareProd 2 года назад
not work :(
@matchestick
@matchestick Год назад
I also deleted something from registrar now it's not working 😢
@NightFlareProd
@NightFlareProd Год назад
i know how tofix.... i dont have the laptop rn but you need reistall the pc with internet connection like new iso file from microsoft when ig to the repair mode yk and select reset pc with internet and it should work!
@matchestick
@matchestick Год назад
yeah have to reinstall windows right ?
@NightFlareProd
@NightFlareProd Год назад
yeah but like with the internet@@matchestick
@Mrbehrooz-b2j
@Mrbehrooz-b2j Год назад
It doesn’t work
Далее
Cool Parenting Gadget Against Mosquitos! 🦟👶
00:21
小丑调戏黑天使的后果#short #angel #clown
00:16
Windows 10 Blinking Screen Fix
6:19
Просмотров 190 тыс.