I need to inject custom drivers to wim file offline. I'm using standard scenario described on MSDN http://technet.microsoft.com/en-us/library/hh825206.aspx: mount, add-components (WMI, .NET4), add-drivers (signed, work correctly on windows 7 & 2012, x86/64), unmount, makewinpemedia. However, when I booting from iso (on VMWare), drivers not loading. Any suggestions? Thanks.
1
There are 1 best solutions below
Related Questions in WINDOWS-8
- Interactive plotting with R raster: values on mouseover
- Octave Real time plotting
- draw the y-label on the top of y axis
- How to use plotyy for 2 different plots inside a subplot?
- MatLab 3-vector plot/mesh with colour-scale
- Display value of Y axis inside GUI plot
- term frequency over time: how to plot +200 graphs in one plot with Python/pandas/matplotlib?
- R: ggplot2: Unable to plot points from a data.frame
- Combine base and ggplot graphics in R figure window in different pages
- Categorical scatter plot in Matlab
Related Questions in WINPE
- Interactive plotting with R raster: values on mouseover
- Octave Real time plotting
- draw the y-label on the top of y axis
- How to use plotyy for 2 different plots inside a subplot?
- MatLab 3-vector plot/mesh with colour-scale
- Display value of Y axis inside GUI plot
- term frequency over time: how to plot +200 graphs in one plot with Python/pandas/matplotlib?
- R: ggplot2: Unable to plot points from a data.frame
- Combine base and ggplot graphics in R figure window in different pages
- Categorical scatter plot in Matlab
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular # Hahtags
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
The most important thing while developing Win PE driver is to follow the architecture(using 32 bit on 64 bit Win PE can cause failures)
Follow the steps:-
Take the 'Custom Windows PE' rescue CD option in the rescue CD wizard.
If you haven't previously installed the Windows Automated Installation Kit (WAIK), then this will need to be downloaded and installed. This is a big (1.7GB) download, so please be patient. The WAIK download dialog will be shown. Just click 'Continue' and be patient while the integration completes.
Once the integration is finished cancel the rescue media wizard.
Download and run 'inject.exe' from here:
http://updates.macrium.com/reflect/utilities/inject.exe
This will automatically inject the drivers into the windows image file (WIM) and will take a few minutes.
Once completed, take the rescue media build wizard again, select the 'Custom Windows PE' and click through to the final page.
Click the 'Rebuild' button to re-integrate the WAIK. This will not need to download and install the WAIK again, so will be much quicker.
Once completed, if you now burn the rescue CD the drivers will be integrated and you should have no problems booting with the CD and recognizing your local RAID volumes.
Have you gone through Windows Automated Installation Kit (AIK) you can have a look at the following link it may help you. http://kb.acronis.com/content/24254
Windows PE always uses the same basic VESA mode video driver regardless of the card in use. Please check the link below. http://technet.microsoft.com/en-us/magazine/cc160920.aspx
This particular link for creation of the ISO with Windows Automated Installation Kit (AIK) can also help you get going. http://www.bootfromcd.com/compare-solutions/windows-pe-boot-disk-review/ i did spent some time with Win PE,there is a image below are you getting the same message while booting with VM?
There are some additional steps given in the follwing link you can check if it works this way
https://users.emulab.net/trac/emulab/wiki/WindowsByWinpe
another helpful link
http://desktopreality.com/windows-7-deployment-the-easy-way/
Updated the information check if it helps. Thanks