Showing posts with label windows. Show all posts
Showing posts with label windows. Show all posts

Sunday, March 10, 2024

Rebuild BCD in Windows using CMD


  1. Boot your computer into Advanced Recovery Mode
  2. Launch Command Prompt available under Advanced Options.
  3. To rebuild the BCD or Boot Configuration Data file use the command – bootrec /rebuildbcd
  4. It will scan for other operating systems and let you select the OS’s you want to add to BCD

To set boot record manually:

bcdboot c:\windows /s c:

Sunday, May 7, 2023

Fix the Windows and Outlook “Indexing Is Paused” Error

Method-1: Registry Tweak
1. 
HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\

or

HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows Search

2. Press “Windows Search” on the left, then double-click “PreventIndexingOutlook” on the right.

3. If you don’t have “Windows Search,” you can create it by right-clicking “Windows -> Edit -> New -> Key.” Name it accordingly, then create the “PreventIndexingOutlook” value by right-clicking an empty space on the menu on the right and selecting “New -> DWORD Value (32- bit).”

4. Once created, double-click it to adjust the “Base” to “Hexadecimal” and change “Value data” to “1,” then click “OK.”

5. Reboot Computer

Extract Domain from email in Excel or Google sheet

  =TEXTAFTER( A2 , "@") or, =MID(A1, FIND("@", A1) + 1, LEN(A1) - FIND("@", A1))