我正在使用Ionic构建一个Windows应用程序,但在运行命令 离子运行窗口 后,我得到了以下日志:
Before installing this app, you need to do the following:
- Acquire a developer license
- Install the signing certificate
Administrator credentials are required to continue. Please accept the UAC prompt and provide your administrator password if asked.
Press Enter to continue...:
然后停止后,在控制台中没有听到按键事件。
当我使用管理员权限运行cmd时。它给出了以下错误:
Error: Can not run this platform with administrative permissions. Must be run from a non-admin prompt.
答案 0 :(得分:2)
运行命令
ionic run windows
在 PowerShell 中,它就像魅力(没有管理员权限)。
你也可以去
[project path]\platforms\windows\AppPackages\CordovaApp.Windows10_0.0.1.0_anycpu_debug_Test
并右键单击* .ps1文件
Add-AppDevPackage.ps1
然后点击使用PowerShell运行
希望这有帮助!
PS:别忘了添加
<preference name="windows-target-version" value="10.0" />
到config.xml文件,记录为here。