I was able to deploy .appx using the WinAppDeployCmd command-line tool. Probably the problem was true in recent versions.
For those who are not familiar with this tool, it allows you to deploy the Universal Windows application with Windows 10 to any Windows 10 mobile device via USB or WiFi (since they are on the same subnet). This is the ideal solution if you do not have Visual Studio, no source code for the application, or if you are under a Hyper-V virtual machine.
Basically you will need:
- Windows 10 SDK
- Create .appx package (PC)
- Enable Developer Mode (Mobile)
- Enable discovery mode (Mobile)
- Get code for pairing devices (Mobile)
- Get mobile IP address using WinAppDeployCmd tool (PC)
- Launch Command (PC)
The command will look like this:
WinAppDeployCmd install -file "<path>" -ip <ip> -pin <pin>
The tool can be found in C: \ Arquivos de Programas (x86) \ Windows Kits \ 10 \ bin \ x86 \ WinAppDeployCmd.exe
Below you can find a detailed step-by-step tutorial here.
source share