Tuesday, 19 July 2022

How to Disable ‘Show More Options’ from the Right Click Menu in Windows 11

  1. Click on the Start Menu and Search for “Command Prompt”.
  2. Press “Run as Administrator” under Command Prompt
  3. Once Command Prompt’s window opens you can put the following command and press enter:
reg add HKCU\Software\Classes\CLSID\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}\InprocServer32 /ve /d "" /f


No comments:

SQL: Generate a range of numbers

SELECT ones.n + 10*tens.n + 100*hundreds.n + 1000*thousands.n FROM       (VALUES(0),(1),(2),(3),(4),(5),(6),(7),(8),(9)) ones(n),      (VALU...