The Computer Oracle

How to run DISM against a local source?

--------------------------------------------------
Hire the world's top talent on demand or became one of them at Toptal: https://topt.al/25cXVn
and get $2,000 discount on your first invoice
--------------------------------------------------

Take control of your privacy with Proton's trusted, Swiss-based, secure services.
Choose what you need and safeguard your digital life:
Mail: https://go.getproton.me/SH1CU
VPN: https://go.getproton.me/SH1DI
Password Manager: https://go.getproton.me/SH1DJ
Drive: https://go.getproton.me/SH1CT


Music by Eric Matyas
https://www.soundimage.org
Track title: Quiet Intelligence

--

Chapters
00:00 How To Run Dism Against A Local Source?
00:35 Accepted Answer Score 23
00:53 Answer 2 Score 0
01:38 Thank you

--

Full question
https://superuser.com/questions/870864/h...

--

Content licensed under CC BY-SA
https://meta.stackexchange.com/help/lice...

--

Tags
#windows8 #windows81 #dism

#avk47



ACCEPTED ANSWER

Score 23


You can point to the WIM file of the Windows 8.1 RTM DVD:

Dism /Online /Cleanup-Image /RestoreHealth /source:wim:D:\sources\install.wim:1 /limitaccess

(where D: is your Windows DVD drive or mounted Win8.1 ISO)




ANSWER 2

Score 0


I'm sorry to disappoint everyone but that solution not worked for me.

The only way that worked was:

  1. Convert my iso in WIM

  2. mount my iso in virtual drive ex. E:\

  3. mount WIM in a folder ex. C:\test\offline with this command:

    DISM.exe /Mount-Wim /WimFile:e:\sources\install.wim /index:5 /MountDir:C:\test\offline /ReadOnly

Note: index 5 is the number of my windows version obtained with:

    dism /Get-WimInfo /WimFile:E:\sources\install.wim
  1. Issue this command:
    Dism /Image:C:\test\offline /Cleanup-Image /RestoreHealth /Source:c:\test\offline\windows

In the end this can be applied plainly to an USB storage support.