[DISCUSSION] Windows 10 (1709 RS3) "Fall Creators Update" Final 16299.15 , 16299.64 & 16299.125 (PC)

Discussion in 'Windows 10' started by Enthousiast, Oct 3, 2017.

  1. Enthousiast

    Enthousiast MDL Tester

    Oct 30, 2009
    49,679
    103,532
    450
    You can read english? I said: if the system has a MSDM for a certain edition windows 10 setup will select the edition that belongs to the MSDM key, in your case Home SingleLanguage.
     
  2. Master01

    Master01 MDL Junior Member

    Mar 18, 2015
    56
    27
    0
    Do you write your problem on feedback hub? 17 October we will get cumulative update... so Microsoft still have some time to work on fixes some issues with zero day patch.
     
  3. sweetvivek007

    sweetvivek007 MDL Novice

    Mar 23, 2010
    19
    0
    0
    dear this is the problem i am talking about actually, i have retail pro digital license also available with me, so wanted to install pro version. So is that thing available in clientcombined esd's
     
  4. cuteee

    cuteee MDL Guru

    Oct 13, 2012
    5,760
    997
    180
    clientcombined was in RS2.
    Now clientconsumer in RS3.
     
  5. Nucleus

    Nucleus MDL Guru

    Aug 4, 2009
    2,868
    2,950
    90
    ^ :g:

    Edit: Oh see the link now.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  6. cuteee

    cuteee MDL Guru

    Oct 13, 2012
    5,760
    997
    180
    Try Defraggler. Make boot defrag. See if this help.
     
  7. GOD666

    GOD666 MDL Expert

    Aug 1, 2015
    1,957
    2,059
    60
    The simplest way I like to explain an ESD file is it is the Microsoft equivalency of a Rar file. You download the 1 GB ESD file and convert/extract it into a 3.5 GB ISO file.

    @Rearis you seem to have a hard time accepting this and what @MrMagic has said is right, these come directly from Microsoft. You can download them directly from their servers and this is what Microsoft uses when it upgrades you from build X to build Y.
     
  8. Nucleus

    Nucleus MDL Guru

    Aug 4, 2009
    2,868
    2,950
    90
    #749 Nucleus, Oct 9, 2017
    Last edited: Oct 9, 2017
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  9. abbodi1406

    abbodi1406 MDL KB0000001

    Feb 19, 2011
    17,209
    90,793
    340
    You upgraded 16299 to 16299? or from earlier build to 16299?

    you can just change key to Enterprise

    Enterprise already have all Pro Workstation "special" features
     
  10. cassades2014

    cassades2014 MDL Junior Member

    May 11, 2013
    73
    17
    0
    mail closes randomly wtf is this s**t build ?
     
  11. endbase

    endbase MDL Guru

    Aug 12, 2012
    4,694
    1,717
    150
    Upgraded from build 16299 to 16299 ! And for the key change I know but hey it's fine like this :)
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  12. s1ave77

    s1ave77 Has left at his own request

    Aug 15, 2012
    16,093
    24,397
    340
    Errr ... WINDOWS! Wait for ZDP or first CU to solve such 'issues'.

    EDIT: As if this would be the fist Rodeo for some here. With every OFFICIAL release there came a big ZDP or CU to fix tons of little flaws shipped with the 'RTM':
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  13. cuteee

    cuteee MDL Guru

    Oct 13, 2012
    5,760
    997
    180
    Mine is working fine.
     
  14. s1ave77

    s1ave77 Has left at his own request

    Aug 15, 2012
    16,093
    24,397
    340
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  15. SA-X

    SA-X MDL Novice

    Mar 24, 2015
    1
    0
    0
    Exact same situation aswell, on my end when that has happened the hd activity stops blinking.
    Other than that all good so far.
    Using the Enterprise edition.
    Specs:
    FX 8320E
    990FXAUD3 Rev.3
    7950HD
    32GB DDR3 1866
     
  16. MrMagic

    MrMagic MDL Guru

    Feb 13, 2012
    6,011
    4,152
    210
    Breaking news, mail is an app, not an OS
     
  17. Optikopti

    Optikopti MDL Novice

    Oct 9, 2017
    12
    1
    0
    Guys please help i created iso using ESD but at installion it asks më product key what is windows 10 home 16299.15 home TR product key any installion key?
     
  18. TeamOS

    TeamOS MDL Guru

    May 27, 2013
    3,036
    1,739
    120
    new nvidia drivers 387.92 for 16299.15!
     
  19. ColdZero

    ColdZero MDL Android 17

    Nov 9, 2009
    705
    3,230
    30
    #760 ColdZero, Oct 9, 2017
    Last edited: Oct 9, 2017
    Thanks, did a batch file for this.
    This will reset startmenu cache so it will display your installed software when you do a search.
    Run eachtime you install new software.
    Run the batch as administrator.
    Code:
    @echo off
    title Reset Search Cache
    
    :: Username Below:
    set user7=%username%
    
    :Checking
    cls
    echo+
    echo Your username is: %user7%
    echo+
    echo If this is not correct then close this window.
    echo+
    echo If the username is ok then to proceed press ENTER.
    pause >nul
    
    :Permissions
    cls
    rem C:\Users\%username%\AppData\Local\Packages
    cd /d "%userprofile%\AppData\Local\Packages"
    takeown /r /f "Microsoft.Windows.Cortana_cw5n1h2txyewy"
    TASKKILL /IM SearchUI.exe
    icacls "Microsoft.Windows.Cortana_cw5n1h2txyewy" /grant %user7%:(F) /t /c
    rem icacls "Microsoft.Windows.Cortana_cw5n1h2txyewy" /reset /t
    
    :Main
    TASKKILL /IM SearchUI.exe
    rd /Q /S Microsoft.Windows.Cortana_cw5n1h2txyewy
    echo+
    echo Waiting 5 seconds...
    echo+
    timeout 5 >nul
    taskkill /f /im explorer.exe
    timeout 2 >nul
    start explorer.exe
    
    echo+
    echo Done.
    echo+
    pause
    exit