Add or remove features in an existing WES 7 image

Windows Embedded Standard 7 allows you to add and remove features on your existing image.

This can be done very easily by using the Deployment Image Servicing and Management (DISM) tool. The tool allows you to either online or offline edit your image. The online option enables you to add or remove features while the image is running. The offline version lets you add or remove features from an image which is currently not booted.

The basic command line to add feature packages to your image looks like this:

DISM /online /add-package /packagepath:<PathToThePackageDirectory>

The packages are located on the Windows Embedded Standard Runtime DVD – also known as the Image Building Wizard (IBW) in the following directory:

[Drive]:\DS\Packages\FeaturePack\

To add for example the Internet Explorer to your existing image you can use the following command:

DISM /online /add-package /packagepath:”e:\ds\packages\featurespack\x86~winemb-ie-explorer~~~~6.1.7600.16385~1.0”

To remove a package use the following command:

DISM /online /remove-package /packagepath:<PathToThePackageCABFile>

In this case you will have to specify the CAB file of the package which is located in the packages folder. Using the package folder itself does not always work.

DISM /online /remove-package /packagepath:”e:\ds\packages\featurespack\x86~winemb-ie-explorer~~~~6.1.7600.16385~1.0\WinEmb-IE-Explorer.cab”

After each command you should restart the operating system.

The video below shows you the whole process described above.

Tags

Post new comment

(If you're a human, don't change the following field)
Your first name.
(If you're a human, don't change the following field)
Your first name.
  • Web page addresses and e-mail addresses turn into links automatically.
  • Allowed HTML tags: <a> <em> <strong> <cite> <code> <ul> <ol> <li> <dl> <dt> <dd>
  • Lines and paragraphs break automatically.
  • Glossary terms will be automatically marked with links to their descriptions. If there are certain phrases or sections of text that should be excluded from glossary marking and linking, use the special markup, [no-glossary] ... [/no-glossary]. Additionally, these HTML elements will not be scanned: H1, H2, H3, STRONG, a, abbr, acronym, h1, h2, h3, strong.
  • Each email address will be obfuscated in a human readable fashion or (if JavaScript is enabled) replaced with a spamproof clickable link.

More information about formatting options

CAPTCHA
This question is for testing whether you are a human visitor and to prevent automated spam submissions.
Please enter the sum of 2 and 13:
Solve this simple math problem and enter the result. E.g. for the sum of 1 and 3, enter 4.