[DISCUSSION] Windows 10 Technical Preview Build 9841

Discussion in 'Windows 10' started by Tito, Sep 30, 2014.

Thread Status:
Not open for further replies.
  1. EFA11

    EFA11 Avatar Guru

    Oct 7, 2010
    8,710
    6,739
    270
    or type refresh into search :D
     
  2. Stannieman

    Stannieman MDL Guru

    Sep 4, 2009
    2,228
    1,817
    90
    It may have been already asked elsewhere, but is it possible to set your metro-color separately from the window color.
    On Windows 8.x I had the window borders + taskbar to auto and the startscreen to grey with orange accents (also for charms bar, volume slider etc).
    Now with Win10 it seems that there are no separate settings for the metro part anymore. So when I set the borders to auto my start menu is annoying yellow, and I only seem to get it to grey by changing the overal theming color, making my windows look boring.
    So is there any way I can get my start meny/metro part gray with orange while still having my windows borders to auto?
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  3. maddog0266

    maddog0266 MDL Expert

    Apr 26, 2011
    1,247
    161
    60
    Has anyone else noticed a slow down in Windows 10 when it comes out of sleep mode.
    Never notice it before, it just started the last few days.
    I did not notice any new updates of late.
     
  4. KnowledgeableNewbie

    KnowledgeableNewbie MDL Member

    Sep 30, 2014
    178
    28
    10
    have you tried sfc
     
  5. s1ave77

    s1ave77 Has left at his own request

    Aug 15, 2012
    16,092
    24,400
    340
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  6. abbodi1406

    abbodi1406 MDL KB0000001

    Feb 19, 2011
    17,497
    92,819
    340
    #1846 abbodi1406, Oct 10, 2014
    Last edited by a moderator: Apr 20, 2017
    I noticed on some torrent site that there are russian/english version of WTP Enterprise
    Code:
    Russian language pack installed Windows 10 by PainteR v.0.8
    how/where did he got russian lang pack? :g:
     
  7. PaulDesmond

    PaulDesmond MDL Magnet

    Aug 6, 2009
    6,977
    7,149
    240
    #1847 PaulDesmond, Oct 10, 2014
    Last edited by a moderator: Apr 20, 2017
    guess it is kind of home brew if I understood some discussion on this matter at ru-site correctly
     
  8. Tito

    Tito Admin / Adviser
    Staff Member

    Nov 30, 2009
    18,958
    19,492
    340
    We also had Windows 8 LPs in the DP/CP/RP days which were made from 7 LPs.

    ;)
     
  9. PaulDesmond

    PaulDesmond MDL Magnet

    Aug 6, 2009
    6,977
    7,149
    240
    yep, that's they way I understood it for new lps for W10TP
     
  10. cuteee

    cuteee MDL Guru

    Oct 13, 2012
    5,764
    1,001
    180
    But maybe small part of W10TP doesn't translated. And the same about another windows.
     
  11. PaulDesmond

    PaulDesmond MDL Magnet

    Aug 6, 2009
    6,977
    7,149
    240
    any lp which is not among current official TP versions has to be considered as unfinished or simply not available yet. They certainly work on that stuff but considder quite some time to be consumed doing propper translations into all languages
     
  12. Tiko

    Tiko MDL Junior Member

    Aug 18, 2014
    53
    4
    0
    FeedbackApp.Windows is not responding What is?
     
  13. qwerty12

    qwerty12 MDL Novice

    Aug 31, 2010
    49
    68
    0
    #1854 qwerty12, Oct 11, 2014
    Last edited by a moderator: Apr 20, 2017
    Closest I got with AutoHotkey was this:

    Code:
    #NoTrayIcon
    #Persistent
    #SingleInstance force
    #NoEnv  ; Recommended for performance and compatibility with future AutoHotkey releases.
    ; #Warn  ; Enable warnings to assist with detecting common errors.
    SendMode Input  ; Recommended for new scripts due to its superior speed and reliability.
    SetWorkingDir %A_ScriptDir%  ; Ensures a consistent starting directory.
    
    ; registry reading and writing from tomte: h*tp://autohotkey.com/board/topic/36290-regread64-and-regwrite64-no-redirect-to-wow6432node/
    
    SetupWatch(byRef hEvent, byRef hKey) {
    ret := DllCall("Advapi32.dll\RegOpenKeyExW", "uint", 0x80000001, "str", "SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Accent", "uint", 0, "uint", 0x0010 + 0x0001 + 0x0100 + 0x20006, "uint*", hKey)
    if (ret != 0)
    ExitApp
    hEvent := DllCall("CreateEvent", "uint", 0, "int", true, "int", false, "uint", 0)
    if (!hEvent)
    ExitApp
    }
    
    main()
    {
    OnExit, cleanup
    
    SetupWatch(hEvent, hKey)
    Loop {
    ret := DllCall("Advapi32.dll\RegNotifyChangeKeyValue", "uint", hKey, "uint", true, "int", 0x00000004, "uint", hEvent, "int", true)
    if (ret != 0)
    ExitApp
    ret := DllCall("WaitForSingleObject", "uint", hEvent, "uint", 0xFFFFFFFF)
    if (ret = -1)
    ExitApp
    IfWinExist Color and Appearance
    WinWaitClose
    sValue := 0xff520018
    DllCall("Advapi32.dll\RegSetValueExW", "uint", hKey, "str", "StartColorMenu", "uint", 0, "uint", 4, "uint*", sValue, "uint", 4)
    PostMessage, 0x031A, 42,,, ahk_id 0xFFFF ;ahk_class ExploreWClass
    }
    ExitApp
    
    cleanup:
    if (hEvent) {
    DllCall("CloseHandle", "uint", hEvent)
    hEvent = 0
    }
    if (hKey) {
    DllCall("Advapi32.dll\RegCloseKey", "uint", hKey)
    hKey = 0
    }
    ExitApp
    return
    }
    
    main()
    
    This would retain the border and taskbar colour but would set the Start Menu colour to sValue. A lot needs fixing, though, and that's assuming that there's not a simpler way of doing it.
     
  14. Abhishek Anand

    Abhishek Anand MDL Junior Member

    Apr 7, 2013
    72
    9
    0
    #1855 Abhishek Anand, Oct 11, 2014
    Last edited: Oct 11, 2014
    Need help in installing Win 10..
    My config: Win 8.1 x64 Legacy BIOS with MBR partition scheme, OPROM Enabled in Bios Settings.

    Gets stuck at Windows Logo without cursor while trying to boot/install from flashable usb drive
     
  15. burfadel

    burfadel MDL EXE>MSP/CAB

    Aug 19, 2009
    2,626
    3,856
    90
    I haven't checked out the Windows 10 TP ISO, nor do I plan to :). First version I'd go to is the RC most likely, or at least a proper CP.

    If the installation is anything like Windows 8/8.1, setting it up on a modern computer with UEFI is pretty easy. You just format a flash drive with FAT32, open the ISO in Explorer, copy the files over, and reboot! Then, enter the drive boot selection, and choose the UEFI USB entry, not the legacy one. No need for special tools or USB makers etc. The boot drive needs to be in GPT style. I'd actually recommend this for modern computers since it does actually boot differently :)..

    Ideally you use a good (good doesn't mean overly expensive) fast USB 3.0 USB device, and use a USB 3.0 port. Installation of Windows will then be super quick. Of course, that assumes the use of a SSD.
     
  16. Stannieman

    Stannieman MDL Guru

    Sep 4, 2009
    2,228
    1,817
    90
    So this is setting some registry values, right?
    Can you tell which ones exactly? I don't have experience with autohotkey so I guess Win10 will have RTM-ed by the time I find it out by myself :D
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  17. TheSubaru2012

    TheSubaru2012 MDL Senior Member

    Jul 11, 2014
    386
    125
    10
    #1860 TheSubaru2012, Oct 11, 2014
    Last edited: Oct 11, 2014
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...