Forum Discussion
MICH691955
Apr 21, 2024Copper Contributor
Windows 11 Insider Preview 26200.5001 (ge_prerelease)
Saying I need a fix but its a brand new pc
Alabamatom1963
Apr 23, 2024Iron Contributor
This will allow you to get a deeper look into what errors you are having and to post them here.
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. Example Below..
thumbnail image 1 of blog post titled
How to get a detailed Look at Windows Errors Using Powershell
This should help you better isolate what is causing your errors or at least enable you to better describe what is causing the problem for others to help you isolate and fix your problem.
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. Example Below..
thumbnail image 1 of blog post titled
How to get a detailed Look at Windows Errors Using Powershell
This should help you better isolate what is causing your errors or at least enable you to better describe what is causing the problem for others to help you isolate and fix your problem.