[SOLVED] Appxbundle/msixbundle package
Published: October 8, 2021 - 8:40 AM
Hello everyone,
I'm getting motivated to start managing Microsoft Store apps via our WAPT server, but I'm stuck on installing these darn packages.
Here is an example of the code I use for deployment.
The installation seems to be going well, the program appears in the list of installed programs but it is impossible to run it.
There must be something I'm missing…
If anyone has already successfully deployed these apps and can shed some light on the process...
Thanks in advance
Thomas
I'm getting motivated to start managing Microsoft Store apps via our WAPT server, but I'm stuck on installing these darn packages.
Here is an example of the code I use for deployment.
Code: Select all
def install():
package_version = control.version.split('-')[0]
bin_name = bin_name_sub % package_version
print('Installing: %s' % bin_name)
run_powershell('Add-AppxProvisionedPackage -Online -PackagePath %s -SkipLicense' % makepath(basedir,bin_name))There must be something I'm missing…
If anyone has already successfully deployed these apps and can shed some light on the process...
Thanks in advance
Thomas
