User Profile
harshada2019
Joined 8 years ago
User Widgets
Recent Discussions
Re: Error using MSIX windows.shortcut extension
$(Package) or [{Package}] is the string of characters to type into your manifest, Windows Deployment will substitute in the right value during install time. Something like: <desktop7:Shortcut File="$(Package)\VFS\Desktop\Sample.exe" />1.9KViews0likes1CommentRe: C# settings user.config doesn't work with MSIX?
Sorry for the delay in responding. The path you shared appears to be a Win32 app's AppData location. Packaged app's AppData will be under C:\Users\user1\AppData\Local\Packages\... Migration across a Win32 app's AppData to it's MSIX equivalent does not seem possible.620Views0likes0CommentsRe: Code signing works on exe but doesn't on msix
pbertolino sorry for the delay in reverting on this question. Publishing an app on the Store should not need signing, your app will be signed with a trusted certificate for you. This allows the user to install and run your app without installing the associated app signing certificate. If you need the app signed for testing/internal publishing, you may want to try the following : 1. check if the publisher name in the manifest and the one you are trying to use to sign match 2. try using signtool.exe that comes with the SDK, to isolate the issue: https://developer.microsoft.com/en-us/windows/downloads/sdk-archive/ 3. please submit a feedback hub request with the issue detail. 4. Are you able to sign while packaging using "Create App Package" wizard? Please update this thread with your findings. thank you.1.8KViews0likes1CommentRe: Update a non store App deployed via MSIX using the PackageManager API, no ForceShurdown
DeferRegistrationWhenPackagesAreInUse seems like the right approach. For us to get a better understanding of the error and the issue, do you mind submitting a Feedback Hub bug under Developer Platform -> App Deployment?1.4KViews0likes0CommentsRe: How long does it take to upload a new version?
The certification usually completes within few hours, but sometimes it may take longer up to three business days. By default, the submission will be published as soon as it passes certification, unless the developer chooses to place a hold on publishing the submission until a certain date, or until they manually indicate that it should be published. For new apps and updates which include changes to the app's packages, the publishing process will be completed within 24 hours. For updates that only change options such as Store listing details, but don't change the app's packages, the publishing process will take less than one hour. Complete guide on the app certification process along with updating and managing submissions and publishing can be found here https://docs.microsoft.com/en-us/windows/uwp/publish/the-app-certification-process. For additional assistance with product submission, certification, publishing or Partner Center navigation questions or issues, developers can contact Developer Support here: http://aka.ms/storesupport . Hope this helps.1.4KViews1like0CommentsRe: Create MSIX package for WPF app contains service
hiBassel_Alhkallak, I am sharing some docs that might help, feel free to let us know if it still does not work. This lab has a similar scenario discussed: https://microsoft.github.io/MSIX-Labs/#:~:text=Exercise%209%3A%20App%20Service,-What%20does%20this Create and consume an app service https://docs.microsoft.com/en-us/windows/uwp/launch-resume/how-to-create-and-consume-an-app-service886Views0likes0CommentsRe: How to properly escape a comma in makeappx.exe package process?
hijackd5O I think ,(comma) is not supported to be a part of the publisher name. This article specifies how publisher attribute should look like. It has to align with this regex: (CN|L|O|OU|E|C|S|STREET|T|G|I|SN|DC|SERIALNUMBER|(OID\.(0|[1-9][0-9]*)(\.(0|[1-9][0-9]*))+))=(([^,+="<>#;])+|".*")(, ((CN|L|O|OU|E|C|S|STREET|T|G|I|SN|DC|SERIALNUMBER|(OID\.(0|[1-9][0-9]*)(\.(0|[1-9][0-9]*))+))=(([^,+="<>#;])+|".*")))*" [^,+="<>#;] = any symbols like , + = etc are now supported.2.1KViews0likes0CommentsRe: Update a non store App deployed via MSIX using the PackageManager API, no ForceShurdown
I think you could use DeferRegistrationWhenPackagesAreInUse. It is a Boolean value, TRUE indicates that registration of the main package or dependency packages will be delayed until the next time the application is activated if the packages are currently in use; otherwise, FALSE. We will update the doc to reflect this. References: AddPackageOptions Class https://docs.microsoft.com/en-us/uwp/api/windows.management.deployment.addpackageoptions?view=winrt-22000 AddPackageOptions.DeferRegistrationWhenPackagesAreInUse Property https://docs.microsoft.com/en-us/uwp/api/windows.management.deployment.addpackageoptions.deferregistrationwhenpackagesareinuse?view=winrt-22000#windows-management-deployment-addpackageoptions-deferregistrationwhenpackagesareinuse1.5KViews0likes4CommentsRe: Packaged desktop application's support language in Microsoft Store
Cryolitia To add or remove languages for your Store listings, click Add/remove languages from the submission overview page. If you‘ve already uploaded packages, you’ll see their languages listed in the Languages supported by your packages section but you can change it using the add or remove options there. You can submit apps to the Microsoft Store in over 100 languages. Here is a list of supported languages: https://docs.microsoft.com/en-us/windows/uwp/publish/supported-languages More references: Store listing languages https://docs.microsoft.com/en-us/windows/uwp/publish/create-app-store-listings#store-listing-languages Supported languages https://docs.microsoft.com/en-us/windows/uwp/publish/supported-languages1.6KViews0likes2CommentsRe: CI/CD integration msix auto update
delmaco sorry for the delay in responding. Windows apps will use this App Installer URI path to check for Windows app updates. The .appinstaller file can be hosted in a shared location like a HTTP endpoint or a UNC shared folder, and includes the path to find the app packages to be installed. more details can be found here: Automatic updates https://docs.microsoft.com/en-us/windows/msix/app-installer/auto-update-and-repair--overview#automatic-updates App Installer file location https://docs.microsoft.com/en-us/windows/msix/app-installer/create-appinstallerfile-vs#app-installer-file-location732Views0likes0CommentsRe: MSIX recipe for office products
Sidharth2490 , Windows and Office teams are working towards M365 Apps (e.g. Word, PowerPoint, Excel) to be packaged and delivered in MSIX format with the same full extensibility that customer enjoy in Click-to-Run and MSI; we’ll communicate details and timelines as these become available.1KViews0likes0CommentsRe: Creating WPF setup project for deployment
Hi Archana2240, Have you tried Microsoft Visual Studio Installer Projects? The documentation is available here: https://aka.ms/vdproj-docs and one of the answers here covers the steps. For modern deployment targeting Windows 10/11 you can also use the Windows Packaging Project to create APPX and/or MSIX packages.4.6KViews0likes0Comments