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 Generate a HTML Report of Events from PowerShell

The ConvertTo-HTML command in PowerShell is used to convert PowerShell objects into HTML format for displaying the output in a web page or HTML file. The ConvertTo-HTML command generates an HTML table that contains the properties and values of the objects being converted. The syntax for the ConvertTo-HTML command is as follows:

ConvertTo-Html [[-Property] <Object[]>] [-As <String>] [-Body <String>] [-CSSUri <String>] [-Fragment] [-Head <String>] [-PostContent <String>] [-PreContent <String>] [-Title <String>] [-UseDefaultCSS] [<CommonParameters>]

Where:

  • -Property: Specifies the object properties to be included in the HTML table.
  • -As: Specifies the format of the output, which can be "Fragment" or "Page".
  • -Body: Specifies the HTML content to be inserted into the body section of the HTML document.
  • -CSSUri: Specifies the URL of the CSS file to be used for styling the HTML table.
  • -Fragment: Specifies whether to generate an HTML fragment or a full HTML page.
  • -Head: Specifies the HTML content to be inserted into the head section of the HTML document.
  • -PostContent: Specifies the HTML content to be inserted after the HTML table.
  • -PreContent: Specifies the HTML content to be inserted before the HTML table.
  • -Title: Specifies the title of the HTML document.
  • -UseDefaultCSS: Specifies whether to use the default CSS style sheet provided by PowerShell.

Here's an example of using the ConvertTo-HTML command. In PowerShell, type the command: Get-Process | ConvertTo-Html -Property Name,Id,WorkingSet -As Table -Head "<style>table {border-collapse: collapse;} th, td {border: 1px solid black; padding: 5px;}</style>"

In PowerShell, type the command: Get-Process | ConvertTo-Html -Property Name,Id,WorkingSet -As Table -Head "<style>table {border-collapse: collapse;} th, td {border: 1px solid black; padding: 5px;}</style>"

This will then generate an HTML file in table form like this:

This will then generate an HTML file in table form like this:


This HTML file can be further modified to present in your own ways.

 

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