Windows 11 Tweaks, Fixes and Modifications [Overview]

Discussion in 'Windows 11' started by Enthousiast, Jul 1, 2021.

  1. James321

    James321 MDL Novice

    Apr 17, 2018
    1
    0
    0
     
  2. tistou77

    tistou77 MDL Guru

    Mar 22, 2008
    2,208
    738
    90
    Hello

    To copy a directory and its contents (files) to another directory, for example, the Test directory from C:\Divers\Test vers D:\Myfile
    Is this the "cleanest" command ?

    xcopy C:\Divers\Test D:\Myfile\Test /e

    Thanks
     
  3. imlost2

    imlost2 MDL Member

    Aug 5, 2013
    183
    185
    10
    #1983 imlost2, Sep 21, 2025
    Last edited: Nov 27, 2025
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  4. evissing

    evissing MDL Novice

    Aug 21, 2022
    2
    2
    0
    I use this:

    Code:
    Get-Item -EA 4 -Force -Path @("HKLM:\SOFTWARE\Classes","HKLM:\SOFTWARE\Classes\SystemFileAssociations")
        | Get-ChildItem -EA 4 -Force -Exclude @("SystemFileAssociations")
        | Get-ChildItem -EA 4 -Force -Include @("Shell")
        | Get-ChildItem -EA 4 -Force -Include @("print","printto")
        | Remove-Item   -EA 4 -VB -Recurse -Force -WhatIf # Remove the -WhatIf if you want to do the actual removal of the context menu entries
     
  5. tistou77

    tistou77 MDL Guru

    Mar 22, 2008
    2,208
    738
    90
    #1985 tistou77, Oct 6, 2025
    Last edited: Oct 6, 2025
    @evissing Thanks ;)

    I have another request, I'm modifying a registry key for Edge (adding "flags"), but sometimes, after an update, the key name changes partially, and the REG file is no longer valid.
    Isn't it possible with an command line to recognize part of the key and still be able to apply it every time ?

    This is the key and in bold what can change
    [HKEY_CURRENT_USER\Software\Classes\MSEdgeSSHTM.SP7KWQGIB46RITNUE4GU4U7EXY]

    Thanks
     
  6. tistou77

    tistou77 MDL Guru

    Mar 22, 2008
    2,208
    738
    90
    Restore the old Context Menu in Windows 11

    reg.exe add "HKCU\Software\Classes\CLSID\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}\InprocServer32" /f /ve
     
  7. d5aqoëp

    d5aqoëp MDL Addicted

    Jan 19, 2017
    870
    659
    30
    No. I don't want old context menus. I just want to hide these 2 entries by blocking them in reg.
     
  8. tistou77

    tistou77 MDL Guru

    Mar 22, 2008
    2,208
    738
    90
  9. imlost2

    imlost2 MDL Member

    Aug 5, 2013
    183
    185
    10
    #1992 imlost2, Oct 29, 2025
    Last edited: Oct 29, 2025
    Setting default browser and email client.
    Since the introduction of Edge and Outlook, Microsoft has made it increasingly difficult to set your default
    browser and email client to third party apps. It is particularly difficult with portable browsers, which usually don't create
    a default option when they are extracted into Windows. In the past, I have used registry hacks to accomplish
    this. But today, Powershell scripts (which I am still learning) are the way to go. I have attached two scripts to
    set your default browser and email client. Just enter your browser and email paths and remove the ".txt" extension and execute as a Powershell script.
     

    Attached Files:

    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  10. malmoEU

    malmoEU MDL Novice

    Oct 30, 2025
    1
    0
    0
    Apologies in advance if there's an obvious way I'm missing to navigate the forums to get to an answer.
    Coming from Win7 after having finally been cornered into complying with running Win11, is there a way to get the desktop right click context menu to look like Win7/Win10's context menu? I know you can get to that context menu version by clicking the "Show more options" option at the bottom, I'd just like that view to be the default. I would also like the task bar to be left justified instead of centered, and I'd also love it if the Start menu looked more like Win7's Start menu.

    tl;dr I guess I want to know if there's a way to get Win11 to look and act like Win7, has anyone compiled a list of registry tweaks to do so?
     
  11. sizen

    sizen MDL Member

    Jun 4, 2009
    200
    108
    10
    Disable Show More Options Context Menu
    reg add "HKCU\SOFTWARE\CLASSES\CLSID\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}\InprocServer32" /ve /d "" /f

    The starting position can be changed in the settings.
     
  12. imlost2

    imlost2 MDL Member

    Aug 5, 2013
    183
    185
    10
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  13. Carlos Detweiller

    Carlos Detweiller Emperor of Ice-Cream
    Staff Member

    Dec 21, 2012
    8,076
    10,298
    270
    That's highly subjective. Butt-ugly in my eyes.

    But the criticism is not about new optics, it's the fact that optics is the only major thing changing. There are no breaking new features. And no, AI is not anything I intend to ever use.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  14. sizen

    sizen MDL Member

    Jun 4, 2009
    200
    108
    10
    It's not the appearance that's the problem, it's the efficiency of the work.
     
  15. sizen

    sizen MDL Member

    Jun 4, 2009
    200
    108
    10
    For example, in the case of the context menu, all of the items registered by the user were moved to a submenu in the name of making it easier to see, but this was a complete disregard for user operability.
    If they wanted to make it easier to see, the first thing they should have done was create a setting that allowed users to optionally hide many of the items registered by default.
    But instead of doing that, they made changes that ignored user wishes, which I think is why many people are dissatisfied.
     
  16. kopitaneskita

    kopitaneskita MDL Member

    Oct 5, 2010
    158
    15
    10