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 Export Running Process Details in Excel File using PowerShell

In PowerShell, the Export-CSV command is used to export the output of a command or script to a CSV file. The CSV file format is a commonly used format for storing tabular data, which can then be opened in spreadsheet applications like Microsoft Excel or Google Sheets. The syntax for the Export-CSV command is as follows:


Export-Csv [-Path] <String> [-Delimiter <Char>] [-Encoding <String>] [-NoTypeInformation] [-Force] [-Append] [-InputObject <PSObject[]>] [<CommonParameters>]


Where:

  •  -Path: Specifies the path and file name of the CSV file to be created. This can be a local file path or a UNC path to a shared folder.
  • -Delimiter: Specifies the character to use as the delimiter between fields in the CSV file. The default is a comma (,), but other options include semicolon (;), tab (\t), or any other single character.
  • -Encoding: Specifies the character encoding to be used for the CSV file. The default is ASCII, but other options include Unicode, UTF8, UTF7, and UTF32.
  • -NoTypeInformation: Specifies that no type information should be included in the CSV file. By default, the first row of the CSV file includes the data type of each column.
  • -Force: Specifies that any existing file at the specified path should be overwritten without prompting for confirmation.
  • -Append: Specifies that the data should be appended to an existing CSV file rather than creating a new file.
  • -InputObject: Specifies the object or objects to be exported to the CSV file. This can be the output of a command, a variable, or any other object.


For example, to export the output of a command to a CSV file named "output.csv", the following command could be used: Get-Process | Export-Csv -Path "C:\output.csv"


How to export the output of a command to a CSV file named "output.csv", the following command could be used: Get-Process | Export-Csv -Path "C:\output.csv"


This would create a CSV file at the specified path containing information about all running processes on the system.


This would create a CSV file at the specified path containing information about all running processes on the system.


The CSV file shows all running processes with current time details and memory usages in one file. Note that, you need to run PowerShell as administrator to run the 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