usertest
usertest

Reputation: 2272

DesktopAppConverter : error 'E_NO_EXPANDED_BASE_IMAGE'

I want to convert an .exe file using the DesktopAppConverter tool, using this command

DesktopAppConverter.exe -Installer 'D:\Projects\Finance Workspace\New folder\deploy\exe only\pac
kages\bundles\Fun Money-1.0.exe' -Destination 'D:\Projects\Finance Workspace\New folder\deploy\exe only\packages\bundles
\appX' -PackageName "Funmoney" -Publisher "CN=Derbyware" -Version 1.0.0.0 -MakeAppx

I get this error

DesktopAppConverter : error 'E_NO_EXPANDED_BASE_IMAGE': No expanded base images were found at 'C:\ProgramData\Microsoft\Windows\Images'. Please run with -Setup to expand a new base image. At line:1 char:1

How Can I fix this please ??

Upvotes: 1

Views: 1106

Answers (1)

Bogdan Mitrache
Bogdan Mitrache

Reputation: 11023

To convert an app you need to download a Docker base image of Win10, with the same build number as your machine has.

Also, If you have problems with the Microsoft DAC you try this new converter, it is much easier to use, it has a GUI (no command line), built-in support for digital signing and allows you to customize the list of files that get inside your AppX.

Also, you can generate AppX packages for applications which do not (cannot) install silently.

It runs on Windows 7 too, not just Windows 10 (recommended).

Upvotes: 1

Related Questions