how to add 3rd party application installer to wim file?
-
Monday, May 07, 2012 4:28 PMhow to add 3rd party application installer to wim file?
All Replies
-
Monday, May 07, 2012 8:30 PM
You can install system component files, as .msi or .exe files from Windows Installer or Component-Based Servicing (CBS)–based installation packages, online by using the OCSetup tool. You can't install system component .msi and .exe files offline by using DISM. DISM can install only .cab files, .msu files, and .inf files.
http://technet.microsoft.com/en-us/library/dd744334(v=ws.10).aspx
My blogs: Henk's blog and Virtuall | Follow Me on: Twitter | View My Profile on: LinkedIn
-
Tuesday, May 08, 2012 7:35 AM
Hi,
if you want only to add the installer into your image, do the following:
1. Download and install WAIK
2. Mount the Image
Create folders on Images and mount on c:\
-dism /mount-wim /WimFile:c:\Images\Install.wim /index:1 /MountDir:c:\mount
3. Browse to c:\mount and put the installer in the path you want.
4. Unmount the Image
Dism /unmount-wim /MountDir:c:\mount /commit
Kind regards,
Tim
MCITP, MCTS
http://directoryadmin.blogspot.comThis posting is provided 'AS IS' with no warranties or guarantees and confers no rights.
- Proposed As Answer by Kim ZhouModerator Wednesday, May 23, 2012 8:29 AM
- Marked As Answer by Alex ZhaozxMicrosoft Contingent Staff, Moderator Wednesday, May 23, 2012 9:19 AM

