Forgot bit locker pin, forgot bit locker recovery key, 5 Easy ways to fix

Image
 Did you forgot your bit locker pin and recovery key. Try these methods, I hop it help you. 1. When you see this screen, Press "Esc" key in your keyboard for more recovery option. It will say preparing BitLocker recovery, You will see the screen bellow in few minute. Here we will click on "Skip the drive", You will see the screen bellow. Here you need to Turn off your PC, and then enter the BIOS of your PC. In order to enter BIOS, check for your PC brand and model and search on google, how to enter BIOS for your particular brand and model of your PC. Search for "Secure Boot" Enable it and check it, if it works for you. If it do not work, come back to same place and Disable "Secure Boot" and try again, see if it work for you. 2. If the above method do not work for you, try resetting your PC, You can choose any of the two option for resetting your PC, "Keep my files" or "Remove everything" whichever works for you. 3. If the abov...

How to Fetch Event Log of Your Computer using PowerShell

The "Get-EventLog" command is a built-in cmdlet in Windows PowerShell that retrieves events and event logs from the local computer or a remote computer.

The syntax of the "Get-EventLog" command is: Get-EventLog [-LogName] <string> [-After <datetime>] [-Before <datetime>] [-InstanceId <int[]>] [-EntryType {Error | Information | FailureAudit | SuccessAudit | Warning}] [-Source <string[]>] [-Message <string>] [-Newest <int>] [-ComputerName <string[]>] [<CommonParameters>]


Where:

  • -LogName specifies the name of the event log to retrieve events from (e.g. "Application", "System", "Security", etc.).
  • -After and -Before specify the range of dates to retrieve events for.
  • -InstanceId specifies the event ID(s) to retrieve.
  • -EntryType specifies the type of event to retrieve (e.g. Error, Information, Warning, etc.).
  •  -Source specifies the event source(s) to retrieve.
  • -Message specifies the message text to search for.
  • -Newest specifies the number of most recent events to retrieve.
  • -ComputerName specifies the name of the remote computer to retrieve events from.


For example, to retrieve the 50 most recent events from the "Application" event log, you would enter: Get-EventLog -LogName Application -Newest 50


How to retrieve the 50 most recent events from the "Application" event log, you would enter: Get-EventLog -LogName Application -Newest 50


To retrieve all events from the "System" event log that occurred between January 1, 2022 and February 28, 2022, you would enter: Get-EventLog -LogName System -After "01/01/2022" -Before "02/28/2022"


How To retrieve all events from the "System" event log that occurred between January 1, 2022 and February 28, 2022, you would enter: Get-EventLog -LogName System -After "01/01/2022" -Before "02/28/2022"


The "Get-EventLog" command can be useful for troubleshooting and analyzing system and application issues on Windows computers. "Get-EventLog" command has been superseded by the "Get-WinEvent" command in PowerShell version 2.0 and later. The "Get-WinEvent" command provides additional functionality and performance improvements over the "Get-EventLog" command.

 

Popular posts from this blog

Top international payment gateway transaction fee comparison (2024)

What is Python Syntax and how to use?

How to Manage Boot Configuration of Windows using CMD