Universal Windows Platform
53 TopicsDesktop Bridge – The bridge between desktop apps and the Universal Windows Platform
First published on MSDN on Oct 13, 2016 A couple of years ago, during the BUILD conference, Microsoft announced a technology called Project Centennial, which goal is to help developers to take their existing traditional desktop applications and to bring them to the Store, along with the native full Universal Windows Platform apps.27KViews0likes3Commentsrun Add-AppPackage using user system
I have a service that performs some processes and can even be run installation commands. This service is performed by the local system user (SID S-1-5-18). So I sent the command below for the service to run, which it runs using powerShell as the local system Add-AppxPackage -Path "C:\Dir1\Dir2\Dir3\Windows\App.UWP_2.0.27.0_x64.msixbundle" -DependencyPath "C:\Dir1\Dir2\Dir3\Windows\Dependencies\x64\Microsoft.NET.Native.Framework.2.2.appx", "C:\Dir1\Dir2\Dir3\Windows\Dependencies\x64\Microsoft.NET.Native.Runtime.2.2.appx", "C:\Dir1\Dir2\Dir3\Windows\Dependencies\x64\Microsoft.UI.Xaml.2.4.appx", "C:\Dir1\Dir2\Dir3\Windows\Dependencies\x64\Microsoft.VCLibs.x64.14.00.appx" However when trying to run, I get the error: The AppX Deployment operation for CodeWith7-CodeWith4-CodeWith4-CodeWith4-CodeWith12_2.0.27.0_neutral_ ~ 3kncj78a7wnxj failed with error 0x80073CF9. The specific error text for this failure is: Add deployment operation rejected in the CodeWith7-CodeWith4-CodeWith4-CodeWith4-CodeWith12_2.0.27.0_neutral ~ _3kncj78a7wnxj package: App.UWP_2.0.27.0_x64.msixbundle installation request because the account of the Local System is not allowed to perform this operation. When I change the service manually so that it runs using a local administrator user, the command runs without any error. I have a business need to run this command as a local system. Does anyone know how I can do this? Or, does anyone know how to explain to me WHAT is done in the process that requires an ADM user? I have already verified that the machine has developer mode enabled. Before executing the Add-AppPackage command I perform the import of the certificate, so the certificate is installed: "Import-Certificate -FilePath "{0}"-CertStoreLocation Cert:\LocalMachine\Root", Path.Combine ( directoryInstallation, item) I tried to change the command from Add-AppPackage to Add-AppxPackage, but it also didn't work I tried to change the command to run Add-AppDevPackage.ps1, but it also didn't work13KViews0likes1CommentConvert your Electron app using the Desktop Bridge
First published on MSDN on Mar 14, 2017 Electron is an emerging development platform that allows to create cross-platform desktop apps (which means that they can run on Windows, Linux and macOS) using web technologies: everything is powered by HTML and CSS for the user interface and by Javascript for the logic and the user interaction.8.8KViews0likes0CommentsUnpackage, modify, repackage, sign an APPX
First published on MSDN on Aug 07, 2017 If you are working on a desktop application that you want to release on the Windows Store by packaging it with the Desktop Bridge, you’ll know that one of the requirements is that your application should work fine also on Windows 10 S, the new Windows edition that was introduced on 2nd May 2017.5.3KViews0likes0CommentsIntegrate the Microsoft Graph in your HoloLens and Mixed Reality apps
Microsoft Graph is all about you! About the data of the user: Azure Active Directory, Office 365 data, Enterprise Mobility and Security services, Education tenant data and Windows Services. As a developer, the beauty resides in the unified way to authenticate, access and query the data. It can simply be by using a HTTPS Rest service or the SDK for your platform.4.2KViews1like1Comment