运行 当前 Windows 10 台设备中的 appx 文件使用 PowerShell cmdlet

Run appx file in current Windows 10 device using the PowerShell cmdlets

我有一个在别处生成的 appx 文件,我想在我的 Windows 10 机器上测试它。

我已经可以使用 appx 文件,我可以使用适用于 XBox One 的 WinAppDeployCmd 将其部署到其他设备。这与以下命令完美配合:

WinAppDeployCmd install -file "!MY_FILE!" -ip "!DEVICE_IP!" -pin "!DEVICE_PIN!"

我的问题是,在当前所在的 windows 机器中是否有类似的命令来简单地 运行 我的 .appx?有没有办法使用 WinAppDeployCmd 在当前机器上安装它?

我不知道 cmd,但在 PowerShell 中你可以使用

Add-AppxPackage -Path C:\Users\User\MyApp.appx

如果包未签名,您需要在 Windows 10 中启用开发者模式才能安装。

  1. 打开设置。
  2. 单击“更新和安全”
  3. 点击面向开发者。
  4. 在“使用开发者功能”下,启用开发者模式。

有关 Add-AppxPackage 的更多信息:https://technet.microsoft.com/en-us/library/hh856048.aspx

更新: 关于为此使用 WinAppDeployCmd,请参阅: