Getting black colour on LTSB 2016 ?

Discussion in 'Windows 10' started by Anemisme, Jan 14, 2019.

  1. Anemisme

    Anemisme MDL Novice

    Nov 28, 2018
    42
    53
    0
    Hi,
    So i know that you are able to select any colour you want for your title bar and such in customisation in the latest release (LTSC per se) , but i wondered if it was possible to use a specific colour for LTSB too ?
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  2. whatever127

    whatever127 MDL PHP Wizard

    Nov 9, 2012
    1,050
    7,345
    60
    Code:
    control.exe color
    Or use configured theme file:
    Code:
    ; Copyright © Microsoft Corp.
    
    [Theme]
    DisplayName=Black
    SetLogonBackground=0
    
    ; Computer - SHIDI_SERVER
    [CLSID\{20D04FE0-3AEA-1069-A2D8-08002B30309D}\DefaultIcon]
    DefaultValue=%SystemRoot%\System32\imageres.dll,-109
    
    ; UsersFiles - SHIDI_USERFILES
    [CLSID\{59031A47-3F72-44A7-89C5-5595FE6B30EE}\DefaultIcon]
    DefaultValue=%SystemRoot%\System32\imageres.dll,-123
    
    ; Network - SHIDI_MYNETWORK
    [CLSID\{F02C1A0D-BE21-4350-88B0-7367FC96EF3C}\DefaultIcon]
    DefaultValue=%SystemRoot%\System32\imageres.dll,-25
    
    ; Recycle Bin - SHIDI_RECYCLERFULL SHIDI_RECYCLER
    [CLSID\{645FF040-5081-101B-9F08-00AA002F954E}\DefaultIcon]
    Full=%SystemRoot%\System32\imageres.dll,-54
    Empty=%SystemRoot%\System32\imageres.dll,-55
    
    [Control Panel\Cursors]
    AppStarting=%SystemRoot%\cursors\aero_working.ani
    Arrow=%SystemRoot%\cursors\aero_arrow.cur
    Crosshair=
    Hand=%SystemRoot%\cursors\aero_link.cur
    Help=%SystemRoot%\cursors\aero_helpsel.cur
    IBeam=
    No=%SystemRoot%\cursors\aero_unavail.cur
    NWPen=%SystemRoot%\cursors\aero_pen.cur
    SizeAll=%SystemRoot%\cursors\aero_move.cur
    SizeNESW=%SystemRoot%\cursors\aero_nesw.cur
    SizeNS=%SystemRoot%\cursors\aero_ns.cur
    SizeNWSE=%SystemRoot%\cursors\aero_nwse.cur
    SizeWE=%SystemRoot%\cursors\aero_ew.cur
    UpArrow=%SystemRoot%\cursors\aero_up.cur
    Wait=%SystemRoot%\cursors\aero_busy.ani
    DefaultValue=Windows Aero
    DefaultValue.MUI=@main.cpl,-1020
    
    [Control Panel\Desktop]
    Wallpaper=%SystemRoot%\web\wallpaper\Windows\img0.jpg
    TileWallpaper=0
    WallpaperStyle=10
    Pattern=
    
    [VisualStyles]
    Path=%ResourceDir%\Themes\Aero\Aero.msstyles
    ColorStyle=NormalColor
    Size=NormalSize
    AutoColorization=0
    ColorizationColor=0XC4000000
    
    [boot]
    SCRNSAVE.EXE=
    
    [MasterThemeSelector]
    MTSM=RJSPBS
    
    [Sounds]
    ; IDS_SCHEME_DEFAULT
    SchemeName=@%SystemRoot%\System32\mmres.dll,-800
    
    

    If you want also a dark inactive Window title bars you can apply this to registry:
    Code:
    Windows Registry Editor Version 5.00
    
    [HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\DWM]
    "AccentColorInactive"=dword:22222222
    
    Restore normal inactive title bars:
    Code:
    Windows Registry Editor Version 5.00
    
    [HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\DWM]
    "AccentColorInactive"=-
    
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  3. Anemisme

    Anemisme MDL Novice

    Nov 28, 2018
    42
    53
    0
    Used the control.exe color method, works great !! thanks
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...