Windows 10 Imaging, Customization and Deployment

Discussion in 'Windows 10' started by arseny92, Jan 31, 2015.

  1. vuze4u

    vuze4u MDL Member

    Apr 24, 2010
    140
    36
    10
    #221 vuze4u, Sep 19, 2015
    Last edited: Sep 19, 2015
    In observation if to avoid causing "PackagePending" the DISM offline /Cleanup-Image /StartComponentCleanup /ResetBase will work perfectly.

    But is there a hint of which package will cause this or we just have to take it blindly and test it all one by one? That's alot of work.

    -- EDIT --

    Know what, nevermind because long list of packages that are just gonna cause PackagePending anyway. And i'm not a fan of auditing an deployed image so i'll have to suck it up install it and run Cleanup-Image online to achieve the same result or run through the list filter the one will cause Pending and run those removal batch on last after cleaned the rest.
     
  2. Flipp3r

    Flipp3r MDL Guru

    Feb 11, 2009
    2,008
    957
    90
    @MyDigito, your using differnet Dism versions (10.0.10240.16384 & 10.0.10532.0). Install the ADK & only use that one from the ADK command prompt which sets correct paths....
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  3. MyDigito

    MyDigito MDL Member

    Aug 16, 2012
    149
    22
    10
    Wrong Install.wim. I downloaded windows with Media Creation Tool.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  4. El-Nebu

    El-Nebu MDL Novice

    Aug 14, 2015
    13
    5
    0
    Ah. When you downloaded it with media creation tool, the install.wim is a install.esd.
    Try to rename install.wim to install.esd (dont know, if this must be) and then use a tool to convert esd to wim.

    After that, you dism command will work.
     
  5. MyDigito

    MyDigito MDL Member

    Aug 16, 2012
    149
    22
    10
    #225 MyDigito, Sep 21, 2015
    Last edited by a moderator: Apr 20, 2017
    Works great!
    Code:
    Microsoft Windows [Version 10.0.10240]
    (c) 2015 Microsoft Corporation. All rights reserved.
    
    C:\WINDOWS\system32>Dism /Mount-Image /ImageFile:C:\Install.wim /index:1 /MountDir:C:\mount
    
    Deployment Image Servicing and Management tool
    Version: 10.0.10240.16384
    
    Mounting image
    [==========================100.0%==========================]
    The operation completed successfully.
    
    C:\WINDOWS\system32>Dism /Image:C:\mount /Get-CurrentEdition
    
    Deployment Image Servicing and Management tool
    Version: 10.0.10240.16384
    
    Image Version: 10.0.10240.16384
    
    Current edition is:
    
    Current Edition : Professional
    
    The operation completed successfully.
    
    C:\WINDOWS\system32>Dism /Image:C:\mount /Get-TargetEditions
    
    Deployment Image Servicing and Management tool
    Version: 10.0.10240.16384
    
    Image Version: 10.0.10240.16384
    
    Editions that can be upgraded to:
    
    Target Edition : Enterprise
    Target Edition : Education
    
    The operation completed successfully.
    
    C:\WINDOWS\system32>Dism /Image:C:\mount /Set-Edition:Enterprise
    
    Deployment Image Servicing and Management tool
    Version: 10.0.10240.16384
    
    Image Version: 10.0.10240.16384
    
    Starting to update components...
    Removing package Microsoft-Windows-EducationEdition~31bf3856ad364e35~amd64~~10.0.10240.16384
    Removing package Microsoft-Windows-EducationEdition~31bf3856ad364e35~amd64~~10.0.10240.16384
    Removing package Microsoft-Windows-EducationEdition~31bf3856ad364e35~amd64~~10.0.10240.16384
    [==========================100.0%==========================]
    
    
    Finished updating components.
    
    Starting to apply edition-specific settings...
    Finished applying edition-specific settings.
    
    The operation completed successfully.
    
    C:\WINDOWS\system32>Dism /Image:C:\mount /Get-CurrentEdition
    
    Deployment Image Servicing and Management tool
    Version: 10.0.10240.16384
    
    Image Version: 10.0.10240.16384
    
    Current edition is:
    
    Current Edition : Enterprise
    
    The operation completed successfully.
    
    C:\WINDOWS\system32>Dism /Unmount-Image /MountDir:C:\mount /commit
    
    Deployment Image Servicing and Management tool
    Version: 10.0.10240.16384
    
    Saving image
    [==========================100.0%==========================]
    Unmounting image
    [==========================100.0%==========================]
    The operation completed successfully.
    
    C:\WINDOWS\system32>
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  6. MyDigito

    MyDigito MDL Member

    Aug 16, 2012
    149
    22
    10
    But still version shows Pro? I converted to Enterpise :sad3:
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  7. MyDigito

    MyDigito MDL Member

    Aug 16, 2012
    149
    22
    10
    Screenshot_16.png
    But still version shows Pro?:sad3:
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  8. bodmas

    bodmas MDL Senior Member

    Jul 26, 2011
    252
    132
    10
    #228 bodmas, Sep 21, 2015
    Last edited: Sep 21, 2015
    It seems you forgot to change the flags. e.g.
    imagex /flags "Enterprise" /info E:\win10\sources\install.wim 1 "Windows 10 Enterprise" "Windows 10 Enterprise"
     
  9. xinso

    xinso MDL Guru

    Mar 5, 2009
    13,712
    14,437
    340
    #229 xinso, Sep 21, 2015
    Last edited: Sep 21, 2015
    Yes, it is essential.

    And for DisplayName and DisplayDescription, GImageX.exe is good.
     
  10. cengizhan

    cengizhan MDL Senior Member

    Jul 29, 2009
    478
    154
    10
    i didn't know that professional could be converted to enterprise. this is good news for me as i won't have to update, install and then capture enterprsie edition seperately.
     
  11. MyDigito

    MyDigito MDL Member

    Aug 16, 2012
    149
    22
    10
    Works great!:thumbsup:

    Works great!:thumbsup:
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  12. MyDigito

    MyDigito MDL Member

    Aug 16, 2012
    149
    22
    10
    #232 MyDigito, Sep 21, 2015
    Last edited by a moderator: May 23, 2017
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  13. xinso

    xinso MDL Guru

    Mar 5, 2009
    13,712
    14,437
    340
    #233 xinso, Sep 21, 2015
    Last edited by a moderator: May 23, 2017
  14. cmmendao

    cmmendao MDL Novice

    Sep 25, 2015
    1
    0
    0
    How you solve this problem, can you please tell me.

    "
    Installation et configuration des outils DaRT en cours...
    L’exécution de la commande s’est arrêtée, car la variable de préférence « ErrorActionPreference » ou le paramètre courant a la valeur Stop : Cette demande n’est pas prise en charge. (Exception de HRESULT : 0x80070032)
    Nettoyage des fichiers temporaires
    Dossier temporaire : C:\Users\Chibi ANUBIS\AppData\Local\Temp\DaRT_Mount_2015.08.20.11.56.29
    "
    Many thanks ;)
     
  15. kuroda

    kuroda MDL Senior Member

    Aug 25, 2012
    445
    32
    10
    I have a windows 10 in a partition hd,but I know make capture install.win happen... i want capture the image of hd directly in install.esd?,its possible?:confused:
     
  16. kuroda

    kuroda MDL Senior Member

    Aug 25, 2012
    445
    32
    10
    GIMAGEX doubt in Windows 10...I use Gimagex for capture and exporting images since seven and 8,8.1,my doubt... gimagex is updated until 8.1 but not 10,has problem use it in windows 10 for capture and exporting/apply images to the Windows 10?