Skip to main content
Filter by
Sorted by
Tagged with
Best practices
0 votes
3 replies
54 views

I'm just wondering what the best way is to deal with MSIX signing keys in a git repo. My project keeps a hash of the signing key in the project files, which means anyone who clones the repository will ...
Josh Noe's user avatar
1 vote
0 answers
98 views

I'm trying to run the Microsoft Push Notifications sample taken from here client to explore this capability on a Windows app. My setup composed of Azure Notification server, remote app to trigger the ...
Zohar81's user avatar
  • 5,214
0 votes
1 answer
58 views

I'm looking at options for creating an installer for an application, and MSIX seems to be the newest kind of installer for Windows. But it also seems to focus a lot on sandboxing and the Windows App ...
Fabian's user avatar
  • 649
0 votes
2 answers
93 views

I have an electron app built with electron forge and @electron-forge/maker-appx. In the output appxmanifest.xml it reads <Application EntryPoint="Windows.FullTrustApplication"..., and ...
Agritite's user avatar
1 vote
1 answer
118 views

While trying to publish our new .NET MAUI project, I received the following error message: MakeAppx : error : You must include a valid app package manifest file named AppxManifest.xml in the source. [...
Nacht's user avatar
  • 3,552
1 vote
0 answers
59 views

I was under the impression that Catalog Files (.cat) on Windows are only used in the context of drivers. I stumbled upon other uses, and wondered whether they make use of .cat files just for ...
Donpedro's user avatar
  • 868
1 vote
1 answer
124 views

I am trying to install MSIXPackagingtoolv1 in a docker image on windows and I am getting a variety of errors. Here is my Dockerfile: FROM mcr.microsoft.com/dotnet/sdk:8.0.411-windowsservercore-...
Christian Bongiorno's user avatar
0 votes
0 answers
63 views

I am packaging an electron app as an msix package, using makeappx.exe. However, I want to use the container features of AppContainer, which should be possible for an MSIX. I find conflicting ...
Uwinator's user avatar
  • 141
0 votes
1 answer
149 views

I'm trying to fully automate my msix builds for an Avalonia desktop application. My solution has 3 projects: desktop UI, a class library, and a WAP (Windows Application Project) project. I can create ...
Dave Doknjas's user avatar
  • 6,600
1 vote
1 answer
108 views

I’ve published a .NET MAUI application to the Microsoft Store as an MSIX package. The app installs and runs fine on my development machine, but when installed on other computers, it does not even ...
José Donizete Oliveira Junior's user avatar
0 votes
1 answer
65 views

I am developing a C# project relying on Managed Extensibility Framework (MEF) to do its job, with Services .DLL like [Export(typeof(IPerson))] public class People : IPerson { ... } that are Lazily ...
B. Bram's user avatar
  • 23
0 votes
1 answer
71 views

I have an out of proc COM server packaged as an MSIX. I also have the following idl file, declare_guid(CLSID_ComServerProxyStub, BA5A4D3C-56D8-4F3D-885D-C30B2405BDA5); [ object, uuid(FA601A80-...
coda's user avatar
  • 2,585
2 votes
0 answers
70 views

Is it possible to configure which <Application> gets launched when I F5 deploy my projects in Visual Studio? I have an MSIX WinAppSDK app with a Package.appxmanifest that has multiple <...
citelao's user avatar
  • 6,382
0 votes
1 answer
111 views

I'm using Visual Studio (Windows Application Packaging Project) to build an app installer for a solution consisting of an .EXE project and some .DLL projects. There are some other files and dlls used ...
AndyS's user avatar
  • 53
0 votes
1 answer
218 views

Does anyone know how to use the Microsoft.Windows.Management.Deployment methods in c# .net 8. I've added the Windows App SDK reference, and my IDE then recognises the class/methods, however it gives ...
KG-DROID's user avatar
  • 324
0 votes
1 answer
93 views

I'm trying to understand the relationship between the blocks defined in the AppxBlockMap.xml file of an MSIX package and the compression process, specifically the Deflate algorithm used in ZIP-based ...
SuperJMN's user avatar
  • 14.1k
0 votes
1 answer
242 views

I am trying to create a Windows app from the following simple Python code. from qtpy.QtWidgets import QApplication, QLabel from qtpy.QtCore import Qt if __name__ == "__main__": # Create ...
Mark wijkhuizen's user avatar
2 votes
1 answer
138 views

I created an app for Windows in C#, which automatically starts when Windows starts. I Write a simple key in the registry: private bool autorunProperty; private readonly static string ...
Brummell's user avatar
  • 242
0 votes
0 answers
44 views

Background I have a Windows desktop application targeting x86 created in Delphi RAD Studio. The application can save and load a project file with a custom file extension. I have created an exe ...
XylemFlow's user avatar
  • 1,033
0 votes
0 answers
110 views

I'm struggling with an issue in my compose multiplatform project. I made an app using ktor and ktorfit, having everything working fine on debug and also while testing the msi on my Windows 11 notebook....
Mirco's user avatar
  • 75
1 vote
0 answers
70 views

I have a .NET 8 app packaged with "Windows Application Packaging Project" aka Desktop Bridge and distributed through Microsoft Store. The .msixupload file contains .appxsym and that file in ...
LOST's user avatar
  • 3,372
0 votes
0 answers
61 views

Launching a .Net 8.0.300 Maui MSIX packaged app from PS/CMD terminal I am working on a project that is developed utilizing Visual Studio to package and launch the application utilizing MSIX packaging. ...
ko-d-the-coder's user avatar
0 votes
1 answer
66 views

I have a full trust Windows desktop app packaged using .wapproj + appxmanifest. I need it to run a background process from a separate executable that exposes a network service (yggstack). Before I ...
LOST's user avatar
  • 3,372
1 vote
1 answer
133 views

I have a Xamarin application that is published to an appxbundle package. I have re-created the application in Maui, and that produces an msix package. When I try up update an installation of the ...
Sparky's user avatar
  • 135
0 votes
1 answer
122 views

The setup: I have a DataGrid with AllowDrop="True", and Drop="MyDropEvent". Let's ignore the handling of the drop event, because it boils down to this: If I attempt to drag/drop ...
Shrimperator's user avatar
0 votes
0 answers
163 views

I am in the process of trying to convert installers for a desktop application from MSI to MSIX. The conversion of the main application was successful. When installing to a local Windows ...
Brian C's user avatar
  • 33
0 votes
0 answers
137 views

I'm trying to follow the instructions here to add auto-update capability to a non-store app packaged with a Windows Application Packaging project: https://learn.microsoft.com/en-us/windows/msix/non-...
Dave Doknjas's user avatar
  • 6,600
0 votes
1 answer
51 views

I have a Windows Application Packaging project with a UI app and a console app. It builds and installs fine (see my previous post). One thing I'd like to change is that the console app ideally shouldn'...
Dave Doknjas's user avatar
  • 6,600
0 votes
1 answer
158 views

I have a Windows UI application (developed with Avalonia), a console application (which is called with command line arguments), and 2 class libraries in one solution (the UI app uses both class ...
Dave Doknjas's user avatar
  • 6,600
1 vote
1 answer
178 views

I'm trying to make a Windows service in .NET 8 to go along with a WinUI3 desktop application. The service program works fine when debugging in Visual Studio, but I'm running into issues packaging it. ...
Josh Noe's user avatar
0 votes
2 answers
89 views

I have a UI application that also has a separate console version. I'm looking at changing the main UI application to MSIX deployment (with potential future deployment to MS Store). The console version ...
Dave Doknjas's user avatar
  • 6,600
0 votes
1 answer
160 views

I'm trying to add reference to an Class Library project from MSIX project in VS2022. I always receive the following error message: "referenced project paths must contain at least one element. ...
mustafa.salaheldin's user avatar
1 vote
0 answers
101 views

I am encountering challenges with the MSIX packaging process for integrating a console application within a WINUI3 project, both intended to be included in the same MSIX package. To achieve this, I ...
Benjo's user avatar
  • 11
1 vote
2 answers
113 views

I am trying to package a UWP application with a desktop extension as full trust process. For this, I have to use a separate packaging application for creating msixupload for store distribution and ...
Simran Nagrani's user avatar
0 votes
0 answers
81 views

I have created a .msix for my Delphi app, which installs fine locally, and WACK (Windows App Certification Kit) passes with no blocking issues. I have checked that the AppxManifest.xml identity and ...
Simon Carter's user avatar
0 votes
1 answer
532 views

Issue Description I am trying to create MSXI installer for .NET WPF application. I have published the .appinstaller file successfully, but the window below shows when the installer is clicked. Cannot ...
笑先生's user avatar
0 votes
1 answer
178 views

I'd like to start using msix packages, but on a (windows 10) machine in question I have the shortcut extension available. The shortcut extension is available since "Windows 10 (Build 19645)",...
Lawrence Kok's user avatar
  • 1,618
0 votes
1 answer
152 views

I am trying to publish an update for a .NET Maui app that has been in production for over a year. I've made several updates to the app, without issue. However, I recently had to get a new computer, ...
Cam06002's user avatar
1 vote
0 answers
72 views

I have a program with the gdal package that i want to include in the MSIX installer. before updating to .net8 it worked with the structure -WindowsApps --Appx_hash ---gdal ---images ---myAppX but ...
busssard's user avatar
  • 168
1 vote
1 answer
304 views

One of our customers uses Windows Enterprise 22H2 (though older Versions display the same behaviour) for some managed devices and wants to deploy our app, signed by a developement certificate to allow ...
llywelyn's user avatar
2 votes
1 answer
2k views

As we know, it is perfectly possible to run MSIX packages in Windows Sandbox manually: Add-AppxPackage -Path mySetup.msix Even Developer mode like they say in the cited question is not mandatory. I ...
Suncatcher's user avatar
  • 10.6k
0 votes
1 answer
1k views

We have a C# App for windows using Win UI3 and the Windows CommunityToolkit. This has always been working against OS version 19041. If I set the TargetFramework to 22621 and the ...
Joost Jens's user avatar
1 vote
1 answer
378 views

I just created an app that I want to publish to the Microsoft Store, so I packed it into MSIX format but I get this message when trying to launch the package (see picture): This app package is not ...
mbcraft's user avatar
  • 49
0 votes
1 answer
132 views

I'm trying to update my microsoft store app and I keep getting this error. Does anyone know how to edit the package family name in a flutter project on android studio? Also, my CN= is the same in my ...
wcdean217's user avatar
  • 277
1 vote
0 answers
68 views

I'm currently deploying a third party executable alongside my own program inside a MSIX package. The 3rd party program is launched via a system command inside a new process group and without a console....
user25507062's user avatar
1 vote
0 answers
217 views

When i have built the MSIX file from VS2022 and click on it to install the application, in the top right hand corner the icon has a background sitting around my icon. Also when I create a shortcut on ...
Nav Pandher's user avatar
0 votes
1 answer
186 views

I want to create an MSIX installer for a new Single Project Uno Platform app with Visual Studio 2022 on Windows 11. I'm using Microsoft's guidance for using an Application Packaging Project. Guidance: ...
Joe Mayo's user avatar
  • 7,503
4 votes
1 answer
3k views

During development of a desktop application with Visual Studio under Windows 11, the project creates an MSIX package, which is initially unsigned. For the purposes of development, I need to install ...
Graham Leggett's user avatar
2 votes
0 answers
138 views

I need to install my side-loaded UWP on a target machine that does not have AppInstaller app. Therefore, obviously, trying to double-click on the .msixbundle is not producing anything. The target ...
Cristiano Ghersi's user avatar
0 votes
2 answers
4k views

After publishing the default .net8 maui app from Visual Studio for Windows, i am not able to sign the resulting .msix package and get this error: SignTool Error: This file format cannot be signed ...
MrMeDkAtEng's user avatar

1
2 3 4 5
7