Flor Chacón

Results 113 comments of Flor Chacón

You get that message because the App Installer package is not installed in the sandbox, but that is only the UI for installing with double-click. You can still install MSIX...

It looks like this is triggered by having Unicode characters in the URL, and the culprit is this line: https://github.com/microsoft/winget-cli/blob/5390e1c7873bf9455261be189083498bcb2e8dc1/src/AppInstallerCLICore/Workflows/DownloadFlow.cpp#L72 Specifically, this part: `filename.string()` Looks like changing it to `filename.u8string()`...

Per @AmelBawa-msft , we already do this copying a file to the dotnet directory for it to be found for the .winmd: https://github.com/microsoft/winget-cli/blob/5390e1c7873bf9455261be189083498bcb2e8dc1/azure-pipelines.yml#L238-L244

I took a quick look at the code and saw two possible sources for inconsistencies with the unknown count 1. When listing available upgrades we first filter the unknown installed...

I looked a bit at the logs. It stopped right after finishing adding one of the ARP entries, so I think it's crashing either on reading the next ARP entry...

I think they mean the exit codes returned by winget itself, not the installers, i.e. the ones defined in [AppInstallerErrors.h](https://github.com/microsoft/winget-cli/blob/master/src/AppInstallerCommonCore/Public/AppInstallerErrors.h) Something like "0x8A150008 means that downloading the installer failed; 0x8A150109...

This sounds expected to me, depending on the editor you were trying to open the logs with. Notepad seems to be bad for opening files that other processes have open;...

Only thing pending now should be arg validation, which once I merge #2862 will be only tagging the arg with the right categories. Although it will have to be a...

> What we gave at store is 1.19.10173 - how does this relate to github versions ? There is no 1.19 at github! I know it doesn't seem to make...

I don't see the issue with the spaces? In PS you can simply do `& "Camunda Modeler"`. I think in cmd you just need to quote it (and actually, there...