Creating a Windows 8.1 AIO with Media Center manually

Discussion in 'Windows 8' started by ambidav, Aug 7, 2012.

  1. panmat

    panmat MDL Novice

    Oct 31, 2009
    17
    1
    0
    Trying to install on virtualbox, all runs OK until after installation of the file I get the following error...

    "windows could not set the offline locale information. Error code 0x80ff0000"

    Again any help gratefull

    ps using MICROSOFT.WINDOWS.8.PROFESSIONAL.RTM.X64.ENGLISH.DVD-WZT
    BUILD: 6.2.9200.16384.WIN8_RTM.120725-1247
    FILE: Windows_8_Pro_EN-US_x64.ISO
     
  2. TopJimmy

    TopJimmy MDL Novice

    Aug 7, 2012
    29
    16
    0
    Check your PM for TechNet ISOs + Media Center custom
     
  3. panmat

    panmat MDL Novice

    Oct 31, 2009
    17
    1
    0
    Thanks a million check your PM
     
  4. arc-us

    arc-us MDL Novice

    Sep 30, 2010
    45
    11
    0
    Excellent how-to, very painless. Many thanks.
     
  5. French frog

    French frog MDL Junior Member

    Sep 10, 2012
    98
    80
    0
    Hello

    Many thanks

    Work fine :yeahyeah:

    >> Ago on this forum an army of great guys who develloppent tools and provide fantastic solutions.

    "The possible is done, the impossible is underway, for miracles provide a time !" No time for miracles MDL :D

    ambidav, FaiKee, kelorgo....and others great guys . THANKS

    Best regards
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  6. tibro

    tibro MDL Novice

    Nov 2, 2012
    7
    0
    0
    Yeah, thank you guys for this great solution. It works great, the guide is simple, I've just made my own WMC iso, installed it and activated with my upgrade key!:biggrin:

    So...thank you! :worthy:
     
  7. bignoddy55

    bignoddy55 MDL Novice

    Oct 19, 2012
    1
    0
    0
    TopJimmy, would you be so kind to PM me the link to Win8Pro.RTMx64?
    Thanks;)
     
  8. freevista

    freevista MDL Member

    Jan 14, 2009
    102
    45
    10
    #388 freevista, Nov 3, 2012
    Last edited by a moderator: Apr 20, 2017
    Image names should be unique in AIO

    Excellent post, thank you. But I noticed a few errors not corrected in the OP (sorry if someone already corrected them, I didn't read the whole thread). Some paths were not correct, but most importantly, if you are ever going to use WSIM (Windows System Image Manager), you should give unique names to all images in the AIO wim. Otherwise WSIM gives error "An item with the same key has already been added", and refuses to open the wim file. Simply adding x86 and x64 to the names is enough:


    Code:
    Dism /Export-Image /SourceImageFile:C:\win8aio\x86\install.wim /SourceIndex:2 /DestinationImageFile:C:\win8aio\win8\sources\install.wim /DestinationName:"Windows 8 x86" /compress:maximum
    
    Dism /Export-Image /SourceImageFile:C:\win8aio\x86\install.wim /SourceIndex:1 /DestinationImageFile:C:\win8aio\win8\sources\install.wim /DestinationName:"Windows 8 x86 Pro" /compress:maximum
    
    Dism /Export-Image /SourceImageFile:C:\win8aio\x86\install.wim /SourceIndex:1 /DestinationImageFile:C:\win8aio\win8\sources\install.wim /DestinationName:"Windows 8 x86 Pro with Media Center" /compress:maximum
    
    Dism /Export-Image /SourceImageFile:C:\win8aio\entx86\sources\install.wim /SourceIndex:1 /DestinationImageFile:C:\win8aio\win8\sources\install.wim /DestinationName:"Windows 8 x86 Enterprise" /compress:maximum
    
    Dism /Export-Image /SourceImageFile:C:\win8aio\x64\sources\install.wim /SourceIndex:2 /DestinationImageFile:C:\win8aio\win8\sources\install.wim /DestinationName:"Windows 8 x64" /compress:maximum
    
    Dism /Export-Image /SourceImageFile:C:\win8aio\x64\sources\install.wim /SourceIndex:1 /DestinationImageFile:C:\win8aio\win8\sources\install.wim /DestinationName:"Windows 8 x64 Pro" /compress:maximum
    
    Dism /Export-Image /SourceImageFile:C:\win8aio\x64\sources\install.wim /SourceIndex:1 /DestinationImageFile:C:\win8aio\win8\sources\install.wim /DestinationName:"Windows 8 x64 Pro with Media Center" /compress:maximum
    
    Dism /Export-Image /SourceImageFile:C:\win8aio\entx64\sources\install.wim /SourceIndex:1 /DestinationImageFile:C:\win8aio\win8\sources\install.wim /DestinationName:"Windows 8 x64 Enterprise" /compress:maximum
    
    ---
    
    Dism /mount-wim /wimfile:C:\win8aio\win8\sources\install.wim /index:3 /mountdir:C:\win8aio\mount
    
    Dism /Image:C:\win8aio\mount /Get-TargetEditions
    
    Dism /Image:C:\win8aio\mount /Set-Edition:ProfessionalWMC
    
    Dism /unmount-wim /mountdir:C:\win8aio\mount /commit
    
    imagex /flags "ProfessionalWMC" /info C:\win8aio\win8\sources\install.wim 3 "Windows 8 x86 Pro with Media Center" "Windows 8 x86 Pro with Media Center"
    
    Dism /mount-wim /wimfile:C:\win8aio\win8\sources\install.wim /index:7 /mountdir:C:\win8aio\mount
    
    Dism /Image:C:\win8aio\mount /Get-TargetEditions
    
    Dism /Image:C:\win8aio\mount /Set-Edition:ProfessionalWMC
    
    Dism /unmount-wim /mountdir:C:\win8aio\mount /commit
    
    imagex /flags "ProfessionalWMC" /info C:\win8aio\win8\sources\install.wim 7 "Windows 8 x64 Pro with Media Center" "Windows 8 x64 Pro with Media Center"
    
    ---
    
    oscdimg -bC:\win8aio\win8\boot\etfsboot.com -h -u2 -m -lwin8_aio C:\win8aio\win8\ C:\win8aio.iso
    
     
  9. TopJimmy

    TopJimmy MDL Novice

    Aug 7, 2012
    29
    16
    0
    I thought about the unique name thing, but don't recall hitting upon any invalid paths. Would you be kind enough to identify?
     
  10. digo94guns

    digo94guns MDL Novice

    Jul 9, 2011
    2
    0
    0
    How active Windows 8 Pro with WMC? :eek:
     
  11. s1ave77

    s1ave77 Has left at his own request

    Aug 15, 2012
    16,092
    24,402
    340
    Activate with KMS first, then install free or bought WMC-Key, done :D.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  12. colemanuk

    colemanuk MDL Novice

    Jul 14, 2012
    6
    0
    0
    your a legend thanks man
     
  13. adit123tya

    adit123tya MDL Senior Member

    Oct 25, 2012
    397
    197
    10
    If the key used is ordered from MS then just click on activate button... it will activate online without any problem
     
  14. TopJimmy

    TopJimmy MDL Novice

    Aug 7, 2012
    29
    16
    0
    Just sharing the love :cool:
     
  15. Lucas Rey

    Lucas Rey MDL Member

    Feb 16, 2010
    124
    32
    10
    #397 Lucas Rey, Nov 3, 2012
    Last edited by a moderator: Apr 20, 2017
    Guys, I have a problem with ei.cfg on Windows 8 Pro

    I tried
    Code:
    [Channel]
    Retail
    [VL]
    0
    Also tried:
    Code:
    [EditionID]
    ProfessionalWMC
    [Channel]
    Retail
    [VL]
    0
    But installation stops due to invalid license (or something like it). Without ei.cfg installation goes ok, but it ask me for the KEY.

    Could someone help me?
    Thanks
     
  16. adit123tya

    adit123tya MDL Senior Member

    Oct 25, 2012
    397
    197
    10
    #398 adit123tya, Nov 3, 2012
    Last edited by a moderator: Apr 20, 2017
    where does the installation actually get stuck... and are you trying to install win 8 pro or ProWMC...
     
  17. ultimate_live

    ultimate_live MDL Expert

    Mar 15, 2011
    1,022
    671
    60
    How can I enable x64 recovery mode ?
     
  18. bdjfreestyle

    bdjfreestyle MDL Member

    Nov 24, 2009
    127
    10
    10
    tkank you very very much friend