Forum Discussion
FeellIn
Mar 27, 2024Copper Contributor
Strange bug after updating to 23h2
Hi everyone. After updating win 11, when the system starts, I can't launch any applications and even restart or shut down through the win menu. Only a hard reset and instant opening of the task ma...
Alabamatom1963
Mar 27, 2024Steel Contributor
Do This first...
How to get a detailed Look at Windows Errors Using Powershell
Go to search and type in Powershell. Once you see it make sure you select Run As Administrator.
Now to see a complete detailed list of Errors simply copy the code below and Paste into Powershell.
Get-WinEvent -FilterHashTable @{LogName = "Application", "System"; Level=1,2; StartTime=((Get-Date).AddDays(-7))} | Out-GridView
You will now get a detailed list of your Windows Errors with Description of the errors.
Other things to try are disconnect all non-essential Devices and then boot the computer up. If everything goes well then the issue is probably a hardware issue. Also check to see if any third party apps are causing the problem by removing them.
The Error report is the best bet to seeing what is going on inside your system.
How to get a detailed Look at Windows Errors Using Powershell
Go to search and type in Powershell. Once you see it make sure you select Run As Administrator.
Now to see a complete detailed list of Errors simply copy the code below and Paste into Powershell.
Get-WinEvent -FilterHashTable @{LogName = "Application", "System"; Level=1,2; StartTime=((Get-Date).AddDays(-7))} | Out-GridView
You will now get a detailed list of your Windows Errors with Description of the errors.
Other things to try are disconnect all non-essential Devices and then boot the computer up. If everything goes well then the issue is probably a hardware issue. Also check to see if any third party apps are causing the problem by removing them.
The Error report is the best bet to seeing what is going on inside your system.