I created sideloading uwp package, chosen for him e-commerce certificate, but when i installing him, the package requires to be included developer mode, sideloading mode not suitable. What's wrong?
Asked
Active
Viewed 74 times
0
-
Have you created the package for the Release configuration? – Martin Zikmund Sep 04 '19 at 11:43
-
Hi, this can be seen by parsing `Add-AppDevPackage.ps1`, in the script, it will check if the current computer is in developer mode. So it is currently recommended to open the developer mode instead of the side loading mode. – Richard Zhang Sep 04 '19 at 12:26
-
Martin, yes i created for release configuration. Richard, what is name for sideloading mode to change to it in the script? if ($GetDeveloperLicense -or $CertificatePath) { DoElevatedOperations //// i think this is developer mode } else { DoStandardOperations PrintMessageAndExit $UiStrings.Success $ErrorCodes.Success } – Mind Sep 04 '19 at 15:06
-
@Mind Hi, maybe this case will solve your problem, he encountered the same problem and provided the code in PowerShell: [here](https://stackoverflow.com/questions/57597193/cannot-sideload-win10-uwp-application-without-developer-mode-developer-license) – Richard Zhang Sep 05 '19 at 07:04
-
@Richard Zhang - MSFT, yes it works. Thank you. – Mind Sep 05 '19 at 11:21