Windows 10: EXPORT INSTALL.WIM BY USING DISM COMMANDS WITH CHECK-INTEGRITY

Discus and support EXPORT INSTALL.WIM BY USING DISM COMMANDS WITH CHECK-INTEGRITY in Windows 10 Installation and Upgrade to solve the problem; today i am sharing some commands useful to exporting new windows .wim images i have an initial image in C drive and i exported new image to... Discussion in 'Windows 10 Installation and Upgrade' started by RAJU.MSC, Sep 16, 2018.

  1. RAJU.MSC Win User

    EXPORT INSTALL.WIM BY USING DISM COMMANDS WITH CHECK-INTEGRITY


    today i am sharing some commands useful to exporting new windows .wim images


    i have an initial image in C drive and i exported new image to H drive


    Get Image Information before exporting
    Imagex.exe /info C:\install.wim
    DISM.exe /Get-ImageInfo /ImageFile:C:\install.wim



    to export an image in normal mode::

    DISM.exe /Export-Image /SourceImageFile:C:\Install.wim /SourceIndex:1 /DestinationImageFile:H:\Install.wim /DestinationName:Windows10


    to export an image with none compression with check integrity ::

    DISM.exe /Export-Image /SourceImageFile:C:\Install.wim /SourceIndex:1 /DestinationImageFile:H:\Installnone.wim /DestinationName:Windows10 /Compress:none /CheckIntegrity


    to export an image with max compression with check integrity ::

    DISM.exe /Export-Image /SourceImageFile:C:\Install.wim /SourceIndex:1 /DestinationImageFile:H:\Installmax.wim /DestinationName:Windows10 /Compress:max /CheckIntegrity


    to export an image with fast compression with check integrity ::

    DISM.exe /Export-Image /SourceImageFile:C:\Install.wim /SourceIndex:1 /DestinationImageFile:H:\Installfast.wim /DestinationName:Windows10 /Compress:Fast /CheckIntegrity


    to export an image with recovery compression with check integrity ::

    DISM.exe /Export-Image /SourceImageFile:C:\Install.wim /SourceIndex:1 /DestinationImageFile:H:\Installrecovery.wim /DestinationName:Windows10 /Compress:Recovery /CheckIntegrity


    the above command line in dark bold is in one line only


    above commands are checked by me and tested on my Windows 10 Asus laptop

    :)
     
    RAJU.MSC, Sep 16, 2018
    #1
  2. johnspack Win User

    Compacting a wim file?

    Actually it turns out the answer is the dism that comes with Win8. Using the new Export-Image command, and a simple batch file, was able to compress my AIO wim by several hundred mbs.
     
    johnspack, Sep 16, 2018
    #2
  3. Trinnyg Win User
    Current DISM commands as The DISM /ScanHealth, /CheckHealth, and /RestoreHealth are no longer valid.

    Not finding the current syntax of this above command to apply to Windows 10 version I am using.

    Current version of Windows 10 -

    Version 1703 - > os build 15063.608

    Windows 10 Professional

    Current DISM Commands help file.

    Deployment Image Servicing and Management tool

    Version: 10.0.15063.0

    DISM.exe [dism_options] {Imaging_command} [<Imaging_arguments>]

    DISM.exe {/Image:<path_to_offline_image> | /Online} [dism_options]

    {servicing_command} [<servicing_arguments>]

    DESCRIPTION:

    DISM enumerates, installs, uninstalls, configures, and updates features

    and packages in Windows images. The commands that are available depend

    on the image being serviced and whether the image is offline or running.

    GENERIC IMAGING COMMANDS:

    /Split-Image - Splits an existing .wim or .ffu file into multiple

    read-only split WIM/FFU files.

    /Apply-Image - Applies an image.

    /Get-MountedImageInfo - Displays information about mounted WIM and VHD

    images.

    /Get-ImageInfo - Displays information about images in a WIM or VHD

    file.

    /Commit-Image - Saves changes to a mounted WIM or VHD image.

    /Unmount-Image - Unmounts a mounted WIM or VHD image.

    /Mount-Image - Mounts an image from a WIM or VHD file.

    /Remount-Image - Recovers an orphaned image mount directory.

    /Cleanup-Mountpoints - Deletes resources associated with corrupted

    mounted images.

    WIM COMMANDS:

    /Apply-CustomDataImage - Dehydrates files contained in the custom data image.

    /Capture-CustomImage - Captures customizations into a delta WIM file on a

    WIMBoot system. Captured directories include all

    subfolders and data.

    /Get-WIMBootEntry - Displays WIMBoot configuration entries for the

    specified disk volume.

    /Update-WIMBootEntry - Updates WIMBoot configuration entry for the

    specified disk volume.

    /List-Image - Displays a list of the files and folders in a

    specified image.

    /Delete-Image - Deletes the specified volume image from a WIM file

    that has multiple volume images.

    /Export-Image - Exports a copy of the specified image to another

    file.

    /Append-Image - Adds another image to a WIM file.

    /Capture-Image - Captures an image of a drive into a new WIM file.

    Captured directories include all subfolders and

    data.

    /Get-MountedWimInfo - Displays information about mounted WIM images.

    /Get-WimInfo - Displays information about images in a WIM file.

    /Commit-Wim - Saves changes to a mounted WIM image.

    /Unmount-Wim - Unmounts a mounted WIM image.

    /Mount-Wim - Mounts an image from a WIM file.

    /Remount-Wim - Recovers an orphaned WIM mount directory.

    /Cleanup-Wim - Deletes resources associated with mounted WIM

    images that are corrupted.

    IMAGE SPECIFICATIONS:

    /Online - Targets the running operating system.

    /Image - Specifies the path to the root directory of an

    offline Windows image.

    DISM OPTIONS:

    /English - Displays command line output in English.

    /Format - Specifies the report output format.

    /WinDir - Specifies the path to the Windows directory.

    /SysDriveDir - Specifies the path to the system-loader file named

    BootMgr.

    /LogPath - Specifies the logfile path.

    /LogLevel - Specifies the output level shown in the log (1-4).

    /NoRestart - Suppresses automatic reboots and reboot prompts.

    /Quiet - Suppresses all output except for error messages.

    /ScratchDir - Specifies the path to a scratch directory.

    For more information about these DISM options and their arguments, specify an

    option immediately before /?.

    Examples:

    DISM.exe /Mount-Wim /?

    DISM.exe /ScratchDir /?

    DISM.exe /Image:C:\test\offline /?

    DISM.exe /Online /?
     
    Trinnyg, Sep 16, 2018
    #3
  4. RejZoR Win User

    EXPORT INSTALL.WIM BY USING DISM COMMANDS WITH CHECK-INTEGRITY

    How to get damn DISM to work?

    Thx guys, I'll compress this data into a blog post. For all the so called guides I've read, not a single one mentioned it has to be WIM file (some listed even ESD which clearly doesn't work) or that certain ISO images don't work with DISM.

    After I've done DISM thingie, SFC also managed to repair stuff. Which is what I've needed here.
     
    RejZoR, Sep 16, 2018
    #4
Thema:

EXPORT INSTALL.WIM BY USING DISM COMMANDS WITH CHECK-INTEGRITY

Loading...
  1. EXPORT INSTALL.WIM BY USING DISM COMMANDS WITH CHECK-INTEGRITY - Similar Threads - EXPORT INSTALL WIM

  2. Data WIM using DISM

    in Windows 10 Software and Apps
    Data WIM using DISM: Dear Support Team,Can anyone guide me how to add Data Wim in Answer file using Windows System Image Manager Windows 10 with real life example. I was able to create Data Wim using DISM but got stuck at further steps....
  3. Data WIM using DISM

    in Windows 10 Gaming
    Data WIM using DISM: Dear Support Team,Can anyone guide me how to add Data Wim in Answer file using Windows System Image Manager Windows 10 with real life example. I was able to create Data Wim using DISM but got stuck at further steps....
  4. Data WIM using DISM

    in Windows 10 Drivers and Hardware
    Data WIM using DISM: Dear Support Team,Can anyone guide me how to add Data Wim in Answer file using Windows System Image Manager Windows 10 with real life example. I was able to create Data Wim using DISM but got stuck at further steps....
  5. Dism adding drivers/updates to Wim

    in Windows 10 Gaming
    Dism adding drivers/updates to Wim: I read about adding drivers to a wim and updates. Does adding a driver replace an existing driver in the wim or does it just put it in the driver folder and you have it as an option later to choose? IE: hp driver for touchpad version 1, and you want to add/replace it with...
  6. Dism adding drivers/updates to Wim

    in Windows 10 Software and Apps
    Dism adding drivers/updates to Wim: I read about adding drivers to a wim and updates. Does adding a driver replace an existing driver in the wim or does it just put it in the driver folder and you have it as an option later to choose? IE: hp driver for touchpad version 1, and you want to add/replace it with...
  7. How to export Windows drivers using DISM

    in Windows 10 News
    How to export Windows drivers using DISM: Did you know that you can use the built-in tool DISM on Windows machines to export drivers? Windows comes with a set of drivers to make sure that most hardware devices work out of the box. Manufacturers create drivers for their devices that users may install; these may add...
  8. Mounting a windows 10 Wim file using DISM command in command prompt

    in Windows 10 Customization
    Mounting a windows 10 Wim file using DISM command in command prompt: Hii, I am facing error while mounting windows 10 Wim file using DISM. The error i am getting is Error:5 Access is denied The DISM log file can be found at C:\windows\Logs\DISM\dism.log I have attached the screen shot of the command prompt. Kindly provide any...
  9. DISM, Export WIM>ESD (recovery) > Crashes (0x80070008)

    in Windows 10 Installation and Upgrade
    DISM, Export WIM>ESD (recovery) > Crashes (0x80070008): Well, got interesting error with latest Windows 10 ADK, crashes while exporting image from WIM to ESD using /compress:recovery switch, same happens also with wimlib and solution seems the same (Figured perhaps this helps someone who might have same error). HW information:...
  10. Convert ESD file to WIM using DISM in Windows 10

    in Windows 10 Tutorials
    Convert ESD file to WIM using DISM in Windows 10: How to: Convert ESD file to WIM using DISM in Windows 10 [img] Information Servicing an offline image, mounting an image, committing changes, it all sounds a bit complicated to an average Windows user. However, it's just geek speak meaning modifying default Windows...