Flor Chacón
Flor Chacón
> I want to write some tools that support APPX/MSIX without them needing MakeAppx and SignTool. Would using the [AppxPackaging API](https://learn.microsoft.com/en-us/windows/win32/api/appxpackaging/) suit your needs? That should let you consume and...
This is a bug but it should be fixed in the latest stable release v1.24. What version of App Installer do you have installed? You can get it from PowerShell...
If the user is signed in, this "App Installer Authentication Manager" window will show up. It will silently check if the current user is authorized to access the package on...
Okay, that's a bug. That version should contain a fix for this issue, but it may have not covered some cases. Could you share some more details about your scenario...
I think I know why it is happening but I haven't had the time to look into it too much. I did manage to repro it at least. I believe...
> On a related note on another app I've configured for `` updates just like this one, it's has stayed on an older version for a week now (new update...
In the background update, the flow does not go through the App Installer UI, so it does not log where I said. My bad. I was thinking of update on...
Thank you for the details. The part you're looking for in `Get-AppxPackageAutoUpdateSettings` is this: ``` AutomaticBackgroundTaskUpdatesEnabled : True ``` That means that the OS is aware that it needs to...
I meant the `OnLaunch` setting in the `.appinstaller`. But that does not seem to be applicable for your case given the type of app. You could use that API to...
Sorry for the delayed response. I now have a repro of both the lingering window and the background update not working; will update once I figure out the cause.