[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. bjf2000

    bjf2000 MDL Expert

    Apr 11, 2008
    1,109
    201
    60
  2. Tiko

    Tiko MDL Junior Member

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

    qwerty12 MDL Novice

    Aug 31, 2010
    48
    68
    0
    #1843 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.
     
  4. Abhishek Anand

    Abhishek Anand MDL Junior Member

    Apr 7, 2013
    72
    9
    0
    #1844 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
     
  5. burfadel

    burfadel MDL EXE>MSP/CAB

    Aug 19, 2009
    2,623
    3,855
    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.
     
  6. Stannieman

    Stannieman MDL Guru

    Sep 4, 2009
    2,230
    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...
  7. TheSubaru2012

    TheSubaru2012 MDL Senior Member

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

    PaulDesmond MDL Magnet

    Aug 6, 2009
    6,978
    7,148
    240
    it is internal only and so it doesn't matter which build is compiled because you won't see it anyway :D
     
  9. cuteee

    cuteee MDL Guru

    Oct 13, 2012
    5,770
    1,004
    180
    I know. But I want to know what they work about.
     
  10. PaulDesmond

    PaulDesmond MDL Magnet

    Aug 6, 2009
    6,978
    7,148
    240
    there are different branches working at the same time and the build machine runs all day long when necessary. Currently enterprise builds obviously gett'n on the list
     
  11. Hadron-Curious

    Hadron-Curious MDL Guru

    Jul 4, 2014
    3,719
    598
    120
    It is like the times of leak are over. Microsoft will no longer tolerate the activities of leaking builds before they are released to those who are the intended testers. I don't think you'll know what they are about until somebody posts images as we have seen before the release of Windows 10 Technical Preview build 9841.
     
  12. cuteee

    cuteee MDL Guru

    Oct 13, 2012
    5,770
    1,004
    180
    Who talk about leak ? I even don't care if the next version of windows 10 will be more 6 month.
    I talked about what I saw in the site that show the builds.
     
  13. Hadron-Curious

    Hadron-Curious MDL Guru

    Jul 4, 2014
    3,719
    598
    120
    Sorry, if I misunderstood your post. What do you really want to know about without it been leaked before the release date? I am just curious to know how that is possible though. I care though because I am a Windows user. If the site intended (you are referring to) divulge the information about the build 9861 it means it has hold of the leak. Is that correct? But, my disagreement with Microsoft is that there are too many builds out there at the moment which are not so much different in any way beside the build versions yet the same kernel.
     
  14. qwerty12

    qwerty12 MDL Novice

    Aug 31, 2010
    48
    68
    0
    Just HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Accent\StartColorMenu :) The value set there changes when you select a new colour and the start menu will take its colour from that value. I converted the sample code given here (h*tp://msdn.microsoft.com/en-gb/library/windows/desktop/ms724892(v=vs.85).aspx). When WaitForSingleObject returns, a value under the Accent key has been set (so it gets triggered a few times for every colour change :\), so the script sets StartColorMenu to the desired value (in this case, the blue from my Windows 8.1 install), sends a WM_THEMECHANGED message to all windows to get Explorer to re-read the key and set the Start Menu colour and goes back to waiting for the next time the value changes. Granted, I don't really like sending WM_THEMECHANGED but the only other way I was effecting a change was by restarting explorer.exe...
     
  15. EFA11

    EFA11 Avatar Guru

    Oct 7, 2010
    8,701
    6,729
    270
    Could be a million things. Kernel update, UI change, feature add/subtract. Who knows what changes from build to build (except those using it lol).
     
  16. TheSubaru2012

    TheSubaru2012 MDL Senior Member

    Jul 11, 2014
    386
    125
    10
    Full list of the current 9861 builds (From BetaWiki)
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  17. abbodi1406

    abbodi1406 MDL KB0000001

    Feb 19, 2011
    18,611
    100,034
    340
    #1860 abbodi1406, Oct 11, 2014
    Last edited: Oct 11, 2014
    Edit: self control :cool2: