Windows 11 Tweaks, Fixes and Modifications [Overview]

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

  1. MDLOL

    MDLOL MDL Novice

    Jan 28, 2024
    3
    2
    0
    Shutdown PC.
     
  2. TairikuOkami

    TairikuOkami MDL Expert

    Mar 15, 2014
    1,252
    1,149
    60
    At idle? Search indexing, Defender, background apps, etc, all that s***, umm stuff, is disabled? My CPU is at ~1% at idle (10% due to taking the screenshot).
     

    Attached Files:

  3. boe323

    boe323 MDL Expert

    Jul 19, 2011
    1,778
    540
    60
    A workaround for new outlook not showing notification when closed
    drag a shortcut from startmenu jumplist to desktop
    Modify the shortcut to open minimised
    go to system tray tick hide when minimised
    drop the modded shortcut in users startup folder ..this is located in roaming
    don't use the close button in the UI ...only use minimised
    leave app running minimised
    when you reboot/login ...outlook will go straight to system tray ....notifications working.

    upload_2024-10-4_17-11-15.png

    upload_2024-10-4_17-11-43.png
    upload_2024-10-4_17-15-4.png
     
  4. LiteOS

    LiteOS Windowizer

    Mar 7, 2014
    2,343
    1,047
    90
    #1784 LiteOS, Oct 4, 2024
    Last edited: Oct 4, 2024
    no just to start the process
     
  5. petok

    petok MDL Senior Member

    May 4, 2009
    350
    201
    10
    Some registry tweaks can't add to offline registry in 24H2 is possible adding with cmd commands?
     
  6. maro9432

    maro9432 MDL Novice

    Mar 16, 2024
    3
    0
    0
    Please tell me how I can use the lock screen window recommendation background when I log in from 24h226100 LTSC. There are a lot of Windows repack masters here, but I don't have a solution to this one. I'm curious and want to solve it. Please help
     
  7. Dark Dinosaur

    Dark Dinosaur X Æ A-12

    Feb 2, 2011
    4,150
    5,947
    150
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  8. TesterMachineOS

    TesterMachineOS MDL Addicted

    Apr 20, 2021
    564
    264
    30
    I remember that there were keys or values to be able to pause Windows Update for a certain time.

    Code:
    ; Start > Settings > Update & Security > Windows Update > Advanced options > Pause updates > Up to 4 years
    [HKEY_LOCAL_MACHINE\Software\Microsoft\WindowsUpdate\UX\Settings]
    "FlightSettingsMaxPauseDays"=dword:000005b4
    
    ; Start > Settings > Update & Security > Windows Update > Advanced options > Pause updates > Until January 1st, 2026
    [HKEY_LOCAL_MACHINE\Software\Microsoft\WindowsUpdate\UX\Settings]
    "PauseFeatureUpdatesStartTime"="2022-07-01T20:00:00Z"
    "PauseQualityUpdatesStartTime"="2022-07-01T20:00:00Z"
    "PauseFeatureUpdatesEndTime"="2026-01-01T20:00:00Z"
    "PauseQualityUpdatesEndTime"="2026-01-01T20:00:00Z"
    "PauseUpdatesExpiryTime"="2026-01-01T20:00:00Z"
    I tried to apply this in Windows 11 21H2/22H2/23H2 and even in 24H2 without success.

    Does anyone know if there is another way to do it via registry or using cmd commands?
     
  9. sizen

    sizen MDL Member

    Jun 4, 2009
    119
    49
    10
    try this

    [HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Svchost]
    netsvcs

    Double-click and delete data

    UsoSvc
    wuauserv
     
  10. TesterMachineOS

    TesterMachineOS MDL Addicted

    Apr 20, 2021
    564
    264
    30
    this can stop updates but as i said before.. i just need to pause them on a certain date.
     
  11. sizen

    sizen MDL Member

    Jun 4, 2009
    119
    49
    10
    If you're trying to do that with the registry, I don't think that's possible.
    How about changing the contents of "netsvcs" on a schedule?
     
  12. haber123

    haber123 MDL Junior Member

    Nov 5, 2009
    93
    43
    0
    #1795 haber123, Oct 27, 2024
    Last edited by a moderator: Oct 31, 2024
    I use the one to pause updates. Works very well and to re-enable just click on un-pause updates and they resume.

    Its from Ankh Tech toolbox.

    Code:
    @echo.
    Reg.exe add "HKLM\SOFTWARE\Microsoft\WindowsUpdate\UX\Settings" /v "PauseFeatureUpdatesStartTime" /t REG_SZ /d "2022-09-27T22:13:15Z" /f >nul 2>&1
    Reg.exe add "HKLM\SOFTWARE\Microsoft\WindowsUpdate\UX\Settings" /v "PauseQualityUpdatesStartTime" /t REG_SZ /d "2022-09-27T22:13:15Z" /f >nul 2>&1
    Reg.exe add "HKLM\SOFTWARE\Microsoft\WindowsUpdate\UX\Settings" /v "PauseUpdatesExpiryTime" /t REG_SZ /d "2050-11-01T22:13:15Z" /f >nul 2>&1
    Reg.exe add "HKLM\SOFTWARE\Microsoft\WindowsUpdate\UX\Settings" /v "PauseFeatureUpdatesEndTime" /t REG_SZ /d "2050-11-01T22:13:15Z" /f >nul 2>&1
    Reg.exe add "HKLM\SOFTWARE\Microsoft\WindowsUpdate\UX\Settings" /v "PauseQualityUpdatesEndTime" /t REG_SZ /d "2050-11-01T22:13:15Z" /f >nul 2>&1
    Reg.exe add "HKLM\SOFTWARE\Microsoft\WindowsUpdate\UX\Settings" /v "PauseUpdatesStartTime" /t REG_SZ /d "2022-09-27T22:13:15Z" /f >nul 2>&1
    Reg.exe add "HKLM\SOFTWARE\Microsoft\WindowsUpdate\UpdatePolicy\Settings" /v "PausedQualityStatus" /t REG_DWORD /d "1" /f >nul 2>&1
    Reg.exe add "HKLM\SOFTWARE\Microsoft\WindowsUpdate\UpdatePolicy\Settings" /v "PausedFeatureStatus" /t REG_DWORD /d "1" /f >nul 2>&1
    Reg.exe add "HKLM\SOFTWARE\Microsoft\WindowsUpdate\UpdatePolicy\Settings" /v "PausedQualityDate" /t REG_SZ /d "2022-09-27 22:13:15" /f >nul 2>&1
    Reg.exe add "HKLM\SOFTWARE\Microsoft\WindowsUpdate\UpdatePolicy\Settings" /v "PausedFeatureDate" /t REG_SZ /d "2022-09-27 22:13:15" /f >nul 2>&1
    @echo.  Updates Paused Until 2050
    @echo.
    
     
  13. Conest

    Conest MDL Novice

    Mar 29, 2018
    16
    13
    0
    Defragsvc keeps starting on my 24h2 installation when it's idle and is eating up my ssd. (checked it on resource monitor)

    Should I be worried?
     
  14. TairikuOkami

    TairikuOkami MDL Expert

    Mar 15, 2014
    1,252
    1,149
    60
    Definitely, 11 is known to have constantly defragmented SSDs twice and thus lowering their lifespan. Third time is the charm. :bruce_h4h:
     
  15. Conest

    Conest MDL Novice

    Mar 29, 2018
    16
    13
    0
    Nice move, microsoft o_O
     
  16. boe323

    boe323 MDL Expert

    Jul 19, 2011
    1,778
    540
    60
    #1799 boe323, Oct 31, 2024
    Last edited: Oct 31, 2024
    Running an initial defragmentation on a fresh system is important for optimizing the Volume Shadow Copy service, which helps with creating backup copies of files or volumes even when they're in use. This ensures that the shadow copies don't overwrite important data
    Applies to all disks and ssd's ..nvme's
     
  17. pistolpeter

    pistolpeter MDL Novice

    Jan 22, 2023
    10
    1
    0
    Can someone share an effective way to disable ctfmon? I don't care about my typing ability on UWP apps