[DISCUSSION] Windows 10 Build 10240

Discussion in 'Windows 10' started by murphy78, Jul 15, 2015.

  1. Beaupeep

    Beaupeep MDL Novice

    Jul 16, 2015
    19
    1
    0
    No, continue using your PINs for each machine but use your password to access the other PC over the network. I assume they are in the same workgroup/domain and on the same subnet.
     
  2. LostED

    LostED SVF Patch Lover

    Jul 30, 2009
    7,226
    21,579
    240
    #3042 LostED, Jul 18, 2015
    Last edited by a moderator: Apr 20, 2017
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  3. Tabassum

    Tabassum MDL Member

    Jun 7, 2011
    236
    19
    10
    Hey bro i have retail key win8 pro when iam apply win 10 it's say's ur key not valid y?
     
  4. HALIKUS

    HALIKUS MDL Addicted

    Jul 29, 2009
    526
    372
    30
    #3045 HALIKUS, Jul 18, 2015
    Last edited by a moderator: Apr 20, 2017
    Hi everyone. I noticed there is no Education SKU yet so i thought i'd share a workaround and a way to save bandwidth. If you take the Pro SKU it can be upgraded with DISM offline via get-target-editions to Enterprise and Education. I don't see why this would be any better or worse than downloading the 3 SKUs individually. I'm assuming if you get the coresinglelanguage version it can be upgraded to core to complete the set. Anyone want to do me a solid and do dism.exe /Image:"c:\Mount" /Get-TargetEditions on a coresinglelanguage wim? Also, is the SKU for home named core or home?

    Either way, heres the stdout of what i used to make the Pro to enterprise\Education. Normally i would update the pro x86\x64 with hotfixes etc and then export the updated target editions. I have been doing this with 8.1 for awhile.

    Code:
    Deployment Image Servicing and Management tool
    Version: 10.0.10240.16384
    
    imagex.exe /info F:\PXE\support\Windows\WIA_WDS\Windows10-x86\sources\install.wim 1 "Windows 10 Professional (x86)" "Windows 10 Professional (x86)"
    dism.exe /Export-Image /DestinationName:"Windows 10 Professional (x86)" /SourceImageFile:"F:\PXE\support\Windows\WIA_WDS\Windows10-x86\sources\install.wim" /SourceIndex:1 /DestinationImageFile:"F:\PXE\support\10_Pro_targeteditions.wim" /Compress:maximum
    imagex.exe /info F:\PXE\support\Windows\WIA_WDS\Windows10-x64\sources\install.wim 1 "Windows 10 Professional (x64)" "Windows 10 Professional (x64)"
    dism.exe /Export-Image /DestinationName:"Windows 10 Professional (x64)" /SourceImageFile:"F:\PXE\support\Windows\WIA_WDS\Windows10-x64\sources\install.wim" /SourceIndex:1 /DestinationImageFile:"F:\PXE\support\10_Pro_targeteditions.wim" /Compress:maximum
    
    imagex.exe /info F:\PXE\support\10_Pro_targeteditions.wim 1 "Windows 10 Professional (x86)" "Windows 10 Professional (x86)"
    dism.exe /Export-Image /DestinationName:"Windows 10 Professional (x86)" /SourceImageFile:"F:\PXE\support\10_Pro_targeteditions.wim" /SourceIndex:1 /DestinationImageFile:10_Updates.wim /Compress:maximum
    imagex.exe /info F:\PXE\support\10_Pro_targeteditions.wim 2 "Windows 10 Professional (x64)" "Windows 10 Professional (x64)"
    dism.exe /Export-Image /DestinationName:"Windows 10 Professional (x64)" /SourceImageFile:"F:\PXE\support\10_Pro_targeteditions.wim" /SourceIndex:1 /DestinationImageFile:10_Updates.wim /Compress:maximum
    
    dism.exe /Export-Image /DestinationName:"Windows 10 Enterprise (x86)" /SourceImageFile:"F:\PXE\support\10_Pro_targeteditions.wim" /SourceIndex:1 /DestinationImageFile:Enterprise.wim /Compress:maximum
    imagex.exe /flags "Enterprise" /info Enterprise.wim 1 "Windows 10 Enterprise (x86)" "Windows 10 Enterprise (x86)"
     
    dism.exe /Export-Image /DestinationName:"Windows 10 Enterprise (x64)" /SourceImageFile:"F:\PXE\support\10_Pro_targeteditions.wim" /SourceIndex:2 /DestinationImageFile:Enterprise.wim /Compress:maximum
    imagex.exe /flags "Enterprise" /info Enterprise.wim 2 "Windows 10 Enterprise (x64)" "Windows 10 Enterprise (x64)"
     
    dism.exe /Mount-Wim /WimFile:Enterprise.wim /Index:1 /MountDir:c:\Mount /Optimize
    dism.exe /Image:"c:\Mount" /Get-TargetEditions
    dism.exe /Image:"c:\Mount" /Set-Edition:Enterprise
    dism.exe /Unmount-Wim /MountDir:c:\Mount /Commit
     
    dism.exe /Mount-Wim /WimFile:Enterprise.wim /Index:2 /MountDir:c:\Mount /Optimize
    dism.exe /Image:"c:\Mount" /Get-TargetEditions
    dism.exe /Image:"c:\Mount" /Set-Edition:Enterprise
    dism.exe /Unmount-Wim /MountDir:c:\Mount /Commit
    
    dism.exe /Export-Image /SourceImageFile:Enterprise.wim /SourceIndex:1 /DestinationImageFile:10_Updates.wim /Compress:maximum
    dism.exe /Export-Image /SourceImageFile:Enterprise.wim /SourceIndex:2 /DestinationImageFile:10_Updates.wim /Compress:maximum
     
    dism.exe /Export-Image /DestinationName:"Windows 10 Education (x86)" /SourceImageFile:"F:\PXE\support\10_Pro_targeteditions.wim" /SourceIndex:1 /DestinationImageFile:Education.wim /Compress:maximum
    imagex.exe /flags "Education" /info Education.wim 1 "Windows 10 Education (x86)" "Windows 10 Education (x86)"
     
    dism.exe /Export-Image /DestinationName:"Windows 10 Education (x64)" /SourceImageFile:"F:\PXE\support\10_Pro_targeteditions.wim" /SourceIndex:2 /DestinationImageFile:Education.wim /Compress:maximum
    imagex.exe /flags "Education" /info Education.wim 2 "Windows 10 Education (x64)" "Windows 10 Education (x64)"
     
    dism.exe /Mount-Wim /WimFile:Education.wim /Index:1 /MountDir:c:\Mount /Optimize
    dism.exe /Image:"c:\Mount" /Get-TargetEditions
    dism.exe /Image:"c:\Mount" /Set-Edition:Education
    dism.exe /Unmount-Wim /MountDir:c:\Mount /Commit
     
    dism.exe /Mount-Wim /WimFile:Education.wim /Index:2 /MountDir:c:\Mount /Optimize
    dism.exe /Image:"c:\Mount" /Get-TargetEditions
    dism.exe /Image:"c:\Mount" /Set-Edition:Education
    dism.exe /Unmount-Wim /MountDir:c:\Mount /Commit
    
    dism.exe /Export-Image /SourceImageFile:Education.wim /SourceIndex:1 /DestinationImageFile:10_Updates.wim /Compress:maximum
    dism.exe /Export-Image /SourceImageFile:Education.wim /SourceIndex:2 /DestinationImageFile:10_Updates.wim /Compress:maximum
     
    
    <WIM>
      <TOTALBYTES>4458339589</TOTALBYTES>
      <IMAGE INDEX="1">
        <DIRCOUNT>13772</DIRCOUNT>
        <FILECOUNT>71769</FILECOUNT>
        <TOTALBYTES>9343966034</TOTALBYTES>
        <HARDLINKBYTES>4045254064</HARDLINKBYTES>
        <CREATIONTIME>
          <HIGHPART>0x01D0BB01</HIGHPART>
          <LOWPART>0x1D0A7A20</LOWPART>
        </CREATIONTIME>
        <LASTMODIFICATIONTIME>
          <HIGHPART>0x01D0C15F</HIGHPART>
          <LOWPART>0x9CCD4761</LOWPART>
        </LASTMODIFICATIONTIME>
        <WINDOWS>
          <ARCH>0</ARCH>
          <PRODUCTNAME>Microsoftr Windowsr Operating System</PRODUCTNAME>
          <EDITIONID>Professional</EDITIONID>
          <INSTALLATIONTYPE>Client</INSTALLATIONTYPE>
          <HAL>acpiapic</HAL>
          <PRODUCTTYPE>WinNT</PRODUCTTYPE>
          <PRODUCTSUITE>Terminal Server</PRODUCTSUITE>
          <LANGUAGES>
            <LANGUAGE>en-US</LANGUAGE>
            <DEFAULT>en-US</DEFAULT>
          </LANGUAGES>
          <SERVICINGDATA>
            <PKEYCONFIGVERSION>10.0.10240.16384;2015-07-10T02:28:50Z</PKEYCONFIGVERSION>
          </SERVICINGDATA>
          <VERSION>
            <MAJOR>10</MAJOR>
            <MINOR>0</MINOR>
            <BUILD>10240</BUILD>
            <SPBUILD>16384</SPBUILD>
            <SPLEVEL>0</SPLEVEL>
          </VERSION>
          <SYSTEMROOT>WINDOWS</SYSTEMROOT>
        </WINDOWS>
        <NAME>Windows 10 Professional (x86)</NAME>
        <DESCRIPTION>Windows 10 Professional (x86)</DESCRIPTION>
        <FLAGS>Professional</FLAGS>
        <WIMBOOT>0</WIMBOOT>
      </IMAGE>
      
      <IMAGE INDEX="2">
        <DIRCOUNT>13772</DIRCOUNT>
        <FILECOUNT>71769</FILECOUNT>
        <TOTALBYTES>9343966034</TOTALBYTES>
        <HARDLINKBYTES>4045254064</HARDLINKBYTES>
        <CREATIONTIME>
          <HIGHPART>0x01D0BB01</HIGHPART>
          <LOWPART>0x1D0A7A20</LOWPART>
        </CREATIONTIME>
        <LASTMODIFICATIONTIME>
          <HIGHPART>0x01D0C15F</HIGHPART>
          <LOWPART>0xA3913E71</LOWPART>
        </LASTMODIFICATIONTIME>
        <WINDOWS>
          <ARCH>0</ARCH>
          <PRODUCTNAME>Microsoftr Windowsr Operating System</PRODUCTNAME>
          <EDITIONID>Professional</EDITIONID>
          <INSTALLATIONTYPE>Client</INSTALLATIONTYPE>
          <HAL>acpiapic</HAL>
          <PRODUCTTYPE>WinNT</PRODUCTTYPE>
          <PRODUCTSUITE>Terminal Server</PRODUCTSUITE>
          <LANGUAGES>
            <LANGUAGE>en-US</LANGUAGE>
            <DEFAULT>en-US</DEFAULT>
          </LANGUAGES>
          <SERVICINGDATA>
            <PKEYCONFIGVERSION>10.0.10240.16384;2015-07-10T02:28:50Z</PKEYCONFIGVERSION>
          </SERVICINGDATA>
          <VERSION>
            <MAJOR>10</MAJOR>
            <MINOR>0</MINOR>
            <BUILD>10240</BUILD>
            <SPBUILD>16384</SPBUILD>
            <SPLEVEL>0</SPLEVEL>
          </VERSION>
          <SYSTEMROOT>WINDOWS</SYSTEMROOT>
        </WINDOWS>
        <NAME>Windows 10 Professional (x64)</NAME>
        <DESCRIPTION>Windows 10 Professional (x86)</DESCRIPTION>
        <FLAGS>Professional</FLAGS>
        <WIMBOOT>0</WIMBOOT>
      </IMAGE>
      
      <IMAGE INDEX="3">
        <DIRCOUNT>13760</DIRCOUNT>
        <FILECOUNT>71542</FILECOUNT>
        <TOTALBYTES>9378646487</TOTALBYTES>
        <HARDLINKBYTES>4042674629</HARDLINKBYTES>
        <CREATIONTIME>
          <HIGHPART>0x01D0BB01</HIGHPART>
          <LOWPART>0x1D0A7A20</LOWPART>
        </CREATIONTIME>
        <LASTMODIFICATIONTIME>
          <HIGHPART>0x01D0C161</HIGHPART>
          <LOWPART>0xD5A5B6E7</LOWPART>
        </LASTMODIFICATIONTIME>
        <WINDOWS>
          <ARCH>0</ARCH>
          <PRODUCTNAME>Microsoftr Windowsr Operating System</PRODUCTNAME>
          <EDITIONID>Enterprise</EDITIONID>
          <INSTALLATIONTYPE>Client</INSTALLATIONTYPE>
          <SERVICINGDATA>
            <GDRDUREVISION>0</GDRDUREVISION>
            <PKEYCONFIGVERSION>10.0.10240.16384;2015-07-10T02:28:20Z</PKEYCONFIGVERSION>
          </SERVICINGDATA>
          <HAL>acpiapic</HAL>
          <PRODUCTTYPE>WinNT</PRODUCTTYPE>
          <PRODUCTSUITE>Terminal Server</PRODUCTSUITE>
          <LANGUAGES>
            <LANGUAGE>en-US</LANGUAGE>
            <DEFAULT>en-US</DEFAULT>
          </LANGUAGES>
          <VERSION>
            <MAJOR>10</MAJOR>
            <MINOR>0</MINOR>
            <BUILD>10240</BUILD>
            <SPBUILD>16384</SPBUILD>
            <SPLEVEL>0</SPLEVEL>
          </VERSION>
          <SYSTEMROOT>WINDOWS</SYSTEMROOT>
        </WINDOWS>
        <NAME>Windows 10 Enterprise (x86)</NAME>
        <DESCRIPTION>Windows 10 Enterprise (x86)</DESCRIPTION>
        <FLAGS>Enterprise</FLAGS>
        <WIMBOOT>0</WIMBOOT>
      </IMAGE>
      
      <IMAGE INDEX="4">
        <DIRCOUNT>18956</DIRCOUNT>
        <FILECOUNT>94042</FILECOUNT>
        <TOTALBYTES>13758817225</TOTALBYTES>
        <HARDLINKBYTES>5988009156</HARDLINKBYTES>
        <CREATIONTIME>
          <HIGHPART>0x01D0BB13</HIGHPART>
          <LOWPART>0xF0473789</LOWPART>
        </CREATIONTIME>
        <LASTMODIFICATIONTIME>
          <HIGHPART>0x01D0C161</HIGHPART>
          <LOWPART>0xEDD872E5</LOWPART>
        </LASTMODIFICATIONTIME>
        <WINDOWS>
          <ARCH>9</ARCH>
          <PRODUCTNAME>Microsoftr Windowsr Operating System</PRODUCTNAME>
          <EDITIONID>Enterprise</EDITIONID>
          <INSTALLATIONTYPE>Client</INSTALLATIONTYPE>
          <SERVICINGDATA>
            <GDRDUREVISION>0</GDRDUREVISION>
            <PKEYCONFIGVERSION>10.0.10240.16384;2015-07-10T01:58:23Z</PKEYCONFIGVERSION>
          </SERVICINGDATA>
          <HAL>acpiapic</HAL>
          <PRODUCTTYPE>WinNT</PRODUCTTYPE>
          <PRODUCTSUITE>Terminal Server</PRODUCTSUITE>
          <LANGUAGES>
            <LANGUAGE>en-US</LANGUAGE>
            <DEFAULT>en-US</DEFAULT>
          </LANGUAGES>
          <VERSION>
            <MAJOR>10</MAJOR>
            <MINOR>0</MINOR>
            <BUILD>10240</BUILD>
            <SPBUILD>16384</SPBUILD>
            <SPLEVEL>0</SPLEVEL>
          </VERSION>
          <SYSTEMROOT>WINDOWS</SYSTEMROOT>
        </WINDOWS>
        <NAME>Windows 10 Enterprise (x64)</NAME>
        <DESCRIPTION>Windows 10 Enterprise (x64)</DESCRIPTION>
        <FLAGS>Enterprise</FLAGS>
        <WIMBOOT>0</WIMBOOT>
      </IMAGE>
      
      <IMAGE INDEX="5">
        <DIRCOUNT>13766</DIRCOUNT>
        <FILECOUNT>71534</FILECOUNT>
        <TOTALBYTES>9378643178</TOTALBYTES>
        <HARDLINKBYTES>4042676424</HARDLINKBYTES>
        <CREATIONTIME>
          <HIGHPART>0x01D0BB01</HIGHPART>
          <LOWPART>0x1D0A7A20</LOWPART>
        </CREATIONTIME>
        <LASTMODIFICATIONTIME>
          <HIGHPART>0x01D0C164</HIGHPART>
          <LOWPART>0x2090AB3B</LOWPART>
        </LASTMODIFICATIONTIME>
        <WINDOWS>
          <ARCH>0</ARCH>
          <PRODUCTNAME>Microsoftr Windowsr Operating System</PRODUCTNAME>
          <EDITIONID>Education</EDITIONID>
          <INSTALLATIONTYPE>Client</INSTALLATIONTYPE>
          <SERVICINGDATA>
            <GDRDUREVISION>0</GDRDUREVISION>
            <PKEYCONFIGVERSION>10.0.10240.16384;2015-07-10T02:28:13Z</PKEYCONFIGVERSION>
          </SERVICINGDATA>
          <HAL>acpiapic</HAL>
          <PRODUCTTYPE>WinNT</PRODUCTTYPE>
          <PRODUCTSUITE>Terminal Server</PRODUCTSUITE>
          <LANGUAGES>
            <LANGUAGE>en-US</LANGUAGE>
            <DEFAULT>en-US</DEFAULT>
          </LANGUAGES>
          <VERSION>
            <MAJOR>10</MAJOR>
            <MINOR>0</MINOR>
            <BUILD>10240</BUILD>
            <SPBUILD>16384</SPBUILD>
            <SPLEVEL>0</SPLEVEL>
          </VERSION>
          <SYSTEMROOT>WINDOWS</SYSTEMROOT>
        </WINDOWS>
        <NAME>Windows 10 Education (x86)</NAME>
        <DESCRIPTION>Windows 10 Education (x86)</DESCRIPTION>
        <FLAGS>Education</FLAGS>
        <WIMBOOT>0</WIMBOOT>
      </IMAGE>
      
      <IMAGE INDEX="6">
        <DIRCOUNT>18968</DIRCOUNT>
        <FILECOUNT>94042</FILECOUNT>
        <TOTALBYTES>13758988935</TOTALBYTES>
        <HARDLINKBYTES>5988091361</HARDLINKBYTES>
        <CREATIONTIME>
          <HIGHPART>0x01D0BB13</HIGHPART>
          <LOWPART>0xF0473789</LOWPART>
        </CREATIONTIME>
        <LASTMODIFICATIONTIME>
          <HIGHPART>0x01D0C164</HIGHPART>
          <LOWPART>0x2237AE98</LOWPART>
        </LASTMODIFICATIONTIME>
        <WINDOWS>
          <ARCH>9</ARCH>
          <PRODUCTNAME>Microsoftr Windowsr Operating System</PRODUCTNAME>
          <EDITIONID>Education</EDITIONID>
          <INSTALLATIONTYPE>Client</INSTALLATIONTYPE>
          <SERVICINGDATA>
            <GDRDUREVISION>0</GDRDUREVISION>
            <PKEYCONFIGVERSION>10.0.10240.16384;2015-07-10T01:58:14Z</PKEYCONFIGVERSION>
          </SERVICINGDATA>
          <HAL>acpiapic</HAL>
          <PRODUCTTYPE>WinNT</PRODUCTTYPE>
          <PRODUCTSUITE>Terminal Server</PRODUCTSUITE>
          <LANGUAGES>
            <LANGUAGE>en-US</LANGUAGE>
            <DEFAULT>en-US</DEFAULT>
          </LANGUAGES>
          <VERSION>
            <MAJOR>10</MAJOR>
            <MINOR>0</MINOR>
            <BUILD>10240</BUILD>
            <SPBUILD>16384</SPBUILD>
            <SPLEVEL>0</SPLEVEL>
          </VERSION>
          <SYSTEMROOT>WINDOWS</SYSTEMROOT>
        </WINDOWS>
        <NAME>Windows 10 Education (x64)</NAME>
        <DESCRIPTION>Windows 10 Education (x64)</DESCRIPTION>
        <FLAGS>Education</FLAGS>
        <WIMBOOT>0</WIMBOOT>
      </IMAGE>
      <GUID>7ee6a8ce-2aba-4d6d-8ebf-286796f952f8</GUID>
      <IMAGECOUNT>6</IMAGECOUNT>
      <COMPRESSION>LZX</COMPRESSION>
      <PARTNUMBER>1</PARTNUMBER>
      <TOTALPARTS>1</TOTALPARTS>
      <ATTRIBUTES>0x8</ATTRIBUTES>
    </WIM>
    
    
     
  5. Don

    Don MDL Expert

    Jul 29, 2009
    1,363
    124
    60
    Kind of ridiculous that pins won't work within your own network..everybody pretty much has more than one pc connected these days.
     
  6. mtwei

    mtwei MDL Senior Member

    Nov 18, 2010
    321
    810
    10
  7. Don

    Don MDL Expert

    Jul 29, 2009
    1,363
    124
    60
    dumb question but you turned discovery back on after upgrading, right? It seems to turn it off.
     
  8. the_scotsman

    the_scotsman MDL Novice

    Jan 10, 2013
    28
    5
    0
    So I've been running the Tech Preview since the 99** builds, updated all the way to 10240. Tonight I decided to format and clean install on the same laptop.

    I installed it, never added a key, just skipped it. I signed in with my MS account, and it won't activate. It shows my key as being the 3V66T one but says the key has been blocked.

    WTF?
     
  9. Don

    Don MDL Expert

    Jul 29, 2009
    1,363
    124
    60
    Your connected to the internet, right? And the build you upgraded to was the same as what was originally installed, home-home or pro-pro? If both of those are yes then I don't know.
     
  10. the_scotsman

    the_scotsman MDL Novice

    Jan 10, 2013
    28
    5
    0
    Yep, connected to the internet, original OS was clean install of early 99** ISO.
     
  11. pisthai

    pisthai Imperfect Human

    Jul 29, 2009
    7,202
    2,273
    240
    You've to check all Network Settings on both Laptop and Desktop, they need to identical except the computers IP. Also applies to Firewall on both machine. And again: DHCP must be enabled in Modem/Router! In Windows also, as @Don told, Network Discovery must be enabled!
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  12. lobo11

    lobo11 TOMAHAWK CHOP

    Feb 16, 2012
    6,584
    5,365
    210
    #3054 lobo11, Jul 18, 2015
    Last edited: Jul 18, 2015
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  13. pisthai

    pisthai Imperfect Human

    Jul 29, 2009
    7,202
    2,273
    240
    #3055 pisthai, Jul 18, 2015
    Last edited by a moderator: Apr 20, 2017
    @the scotsman:

    The Key 3V66T is an Enterprise key and is OK, not blocked! It's blocked for online activation via the MS Activation Center's because of being for Enterprise.

    No need to change the Key. Open an elevated Command Prompt (CMD) and just type the following 2 commands:
    Code:
    slmgr /skms kms.xspace.in
    slmgr /ato
    Both command end with press Enter key. After a moment of the ato command, it should show to be activated!
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  14. blackrow67

    blackrow67 MDL Novice

    Jul 8, 2015
    8
    0
    0
    Core Single Language x64 Turkish link ?
     
  15. DarkStarXxX

    DarkStarXxX MDL Member

    Feb 14, 2010
    225
    71
    10
    ???

    I already have the latest Version;)


    OS NameMicrosoft Windows 8.1 Professional
    OS KerneltypMultiprocessor Free (64-bit)
    OS Version6.3.10240.16390
    OS Service Pack-
     
  16. the_scotsman

    the_scotsman MDL Novice

    Jan 10, 2013
    28
    5
    0
    #3058 the_scotsman, Jul 18, 2015
    Last edited by a moderator: Apr 20, 2017
    After doing the second command, the popup window says the key is blocked.
     
  17. lobo11

    lobo11 TOMAHAWK CHOP

    Feb 16, 2012
    6,584
    5,365
    210
    #3059 lobo11, Jul 18, 2015
    Last edited: Jul 18, 2015
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  18. LLStarks

    LLStarks MDL Member

    May 17, 2011
    133
    6
    10
    "you may continue to receive insider builds until your pc restarts"

    Am I stuck?