Windows 11 Tweaks, Fixes and Modifications [Overview]

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

  1. d5aqoëp

    d5aqoëp MDL Addicted

    Jan 19, 2017
    788
    578
    30
    Set Windows Update to Notifications mode.
     
  2. Dark Dinosaur

    Dark Dinosaur X Æ A-12

    Feb 2, 2011
    3,731
    5,177
    120
    #542 Dark Dinosaur, Sep 25, 2021
    Last edited: Sep 25, 2021
    Windows 7-11 Automated Tweaks Script
    ### Hide Chat Icon
    ### Remove UUP Apps :: Skype, Edge, Teams
    ### Add Custom Terminal Scheme (Somtimes need to run 2X times, to see change's)
    -- default Startup :: Command Prompt
    -- default Font :: Consolas, 10

    Clean Temp Files -- New Version
    Code:
    @cls
    @echo off
    setlocal enabledelayedexpansion
    title Temp Folder's Cleaner
    
    cd /d "%~dp0"
    1>nul 2>nul fltmc || (1>nul 2>nul pushd "%windir%\System32\WindowsPowershell\v1.0\" && (
        (set args=%*)&(if /i '!args!' NEQ '' set args=-arg '!args!')
        powershell "Start """%~dpf0""" -Verb RunAs !args!") || (
        >"%temp%\Elevate.vbs" echo CreateObject^("Shell.Application"^).ShellExecute "%~dpf0", "%*" , "", "runas", 1
        "%temp%\Elevate.vbs"&del /q "%temp%\Elevate.vbs">nul)
    exit)
    
    call :DestryFolder "%Windir%\Temp\"
    call :DestryFolder "%Windir%\assembly\tmp\"
    call :DestryFolder "%LOCALAPPDATA%\Temp\"
    call :DestryFolder "%ALLUSERSPROFILE%\Comodo\Cis\tempscrpt\"
    call :DestryFolder "%Windir%\SoftwareDistribution\Download\"
    call :DestryFolder "%ProgramData%\NVIDIA Corporation\Downloader"
    call :DestryFolder "%ProgramFiles%\NVIDIA Corporation\Installer2"
    
    timeout 6
    exit /b
    
    :DestryFolder
    set targetFolder=%*
    if exist %targetFolder% (
        rd /s /q %targetFolder%
        if exist %targetFolder% (
            for /f "tokens=*" %%g in ('dir /b/s /a-d %targetFolder%') do move /y "%%g" "%temp%"
        ) else (
            md %targetFolder%
        )
    )
    goto :eof
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  3. test4

    test4 MDL Novice

    Apr 17, 2012
    22
    38
    0
    #543 test4, Sep 26, 2021
    Last edited: Sep 26, 2021
    After using the registry tweak to get the small taskbar, the right area is now cut-off like this:

    taskbar.png

    Any known fix? I'd prefer to remove the date completely.

    Windows 11 Pro 22000.194 da-dk
     
  4. geepnozeex

    geepnozeex MDL Junior Member

    Oct 21, 2014
    69
    63
    0
    from online image or mounted ?
     
  5. Dark Dinosaur

    Dark Dinosaur X Æ A-12

    Feb 2, 2011
    3,731
    5,177
    120
    for current installed system :D
    MS must add their s**t to everywhere
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  6. d5aqoëp

    d5aqoëp MDL Addicted

    Jan 19, 2017
    788
    578
    30
    It just became like macOS lol
     
  7. Xtreme21

    Xtreme21 MDL Addicted

    Jun 21, 2021
    690
    1,093
    30
    That option is stated in my post, in the quote you didn't copy!
    But not everyone may want to install stuff via the Store if they just want to have a quick look at something. As in this case it's a tiny little program to start up and have a mess around with. Like it, going to use it? Then install from the Store. Each to their own.
     
  8. WinFree

    WinFree MDL Senior Member

    Aug 6, 2016
    317
    53
    10
    OK. Where do i do that? Thanks in advance :)
     
  9. d5aqoëp

    d5aqoëp MDL Addicted

    Jan 19, 2017
    788
    578
    30
  10. VirtualBlack

    VirtualBlack MDL Novice

    Jul 29, 2020
    7
    0
    0
    Is there any registry tweak to disable the Mica material? I hate it
     
  11. LightSource

    LightSource MDL Junior Member

    Nov 4, 2009
    77
    11
    0
    Could we restore to old classic context menu on the desktop in the latest Dev build?
     
  12. Xtreme21

    Xtreme21 MDL Addicted

    Jun 21, 2021
    690
    1,093
    30
    Options at the main tweaks/fixes/mods post, .exe or .reg registry file, none of those work in Dev build?
     
  13. WinFree

    WinFree MDL Senior Member

    Aug 6, 2016
    317
    53
    10
    Thanks alot :)
     
  14. tistou77

    tistou77 MDL Expert

    Mar 22, 2008
    1,823
    573
    60
    In the systray, which we click on Network, Sound, Battery, it opens the same popup with the same options
    Could there be a tweak to revert to the old behavior ?

    Thanks
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  15. skorpion68

    skorpion68 MDL Novice

    Mar 21, 2015
    36
    75
    0