Desktop application publishing to Microsoft Store

Our company is engaged in the development, support and maintenance of sites of any complexity. From simple one-page sites to large-scale cluster systems built on micro services. Experience of developers is confirmed by certificates from vendors.
Development and maintenance of all types of websites:
Informational websites or web applications
Business card websites, landing pages, corporate websites, online catalogs, quizzes, promo websites, blogs, news resources, informational portals, forums, aggregators
E-commerce websites or web applications
Online stores, B2B portals, marketplaces, online exchanges, cashback websites, exchanges, dropshipping platforms, product parsers
Business process management web applications
CRM systems, ERP systems, corporate portals, production management systems, information parsers
Electronic service websites or web applications
Classified ads platforms, online schools, online cinemas, website builders, portals for electronic services, video hosting platforms, thematic portals

These are just some of the technical types of websites we work with, and each of them can have its own specific features and functionality, as well as be customized to meet the specific needs and goals of the client.

Our competencies:
Development stages
Latest works
  • image_website-b2b-advance_0.png
    B2B ADVANCE company website development
    1212
  • image_web-applications_feedme_466_0.webp
    Development of a web application for FEEDME
    1161
  • image_websites_belfingroup_462_0.webp
    Website development for BELFINGROUP
    852
  • image_ecommerce_furnoro_435_0.webp
    Development of an online store for the company FURNORO
    1041
  • image_crm_enviok_479_0.webp
    Development of a web application for Enviok
    822
  • image_bitrix-bitrix-24-1c_fixper_448_0.png
    Website development for FIXPER company
    815

Publishing Desktop Applications to Microsoft Store

Microsoft Store supports several application formats: traditional Win32/WPF, UWP, and packaged MSIX applications. Electron and other frameworks are published via MSIX — this allows entering the Store without rewriting to WinRT.

Publication formats

Format Audience Features
MSIX (packaged Win32) All Windows 10/11 Full Win32 API access
UWP Store versions only Sandbox, limited file system access
PWA Via Edge/Store Web applications only

Creating MSIX from Electron application

electron-builder can build MSIX directly:

# electron-builder.yml
win:
  target:
    - target: nsis
    - target: msix
  icon: build/icon.ico

msix:
  applicationId:  com.company.AppName
  backgroundColor: "#transparent"
  displayName:    "App Name"
  publisherDisplayName: "Company Name"
  identityName:  "CompanyName.AppName"
npx electron-builder --win msix

For publication to the Store, you need a certificate from a Trusted CA (DigiCert, GlobalSign) or a certificate from Partner Center. Self-signed certificate will not work.

Partner Center registration

  1. Register developer account — $19 one-time (individual) or $99 (company)
  2. Create new application: Partner Center → Apps → New product
  3. Reserve application name
  4. Fill in metadata: description, screenshots (minimum 3, resolution from 1366×768), category, age rating

Package requirements

# Check package before upload
# Windows App Certification Kit (WACK)
& "C:\Program Files (x86)\Windows Kits\10\App Certification Kit\appcert.exe" `
  test -apppackagepath .\AppName.msix -reportoutputpath .\report.xml

# Or via PowerShell
Get-AppxPackage -Name "CompanyName.AppName"

WACK checks: presence of valid manifest, absence of prohibited APIs, correct icons (mandatory sizes 44×44, 150×150, 310×310 in PNG).

AppxManifest.xml

electron-builder generates manifest automatically, but sometimes manual edits are needed:

<Package xmlns="http://schemas.microsoft.com/appx/manifest/foundation/windows10"
         xmlns:uap="http://schemas.microsoft.com/appx/manifest/uap/windows10"
         xmlns:rescap="http://schemas.microsoft.com/appx/manifest/foundation/windows10/restrictedcapabilities">

  <Identity Name="CompanyName.AppName"
            Publisher="CN=Company Name, O=Company Name, C=US"
            Version="1.0.0.0" />

  <Properties>
    <DisplayName>App Name</DisplayName>
    <PublisherDisplayName>Company Name</PublisherDisplayName>
    <Logo>assets\StoreLogo.png</Logo>
  </Properties>

  <Capabilities>
    <rescap:Capability Name="runFullTrust" />  <!-- For Win32 applications -->
    <Capability Name="internetClient" />
  </Capabilities>

  <Applications>
    <Application Id="App" Executable="AppName.exe" EntryPoint="Windows.FullTrustApplication">
      <uap:VisualElements DisplayName="App Name"
                          Description="App description"
                          BackgroundColor="transparent"
                          Square150x150Logo="assets\Square150x150Logo.png"
                          Square44x44Logo="assets\Square44x44Logo.png">
      </uap:VisualElements>
    </Application>
  </Applications>
</Package>

GitHub Actions for automatic publication

- name: Build MSIX
  run: npx electron-builder --win msix
  env:
    CSC_LINK:         ${{ secrets.WIN_CERTIFICATE }}
    CSC_KEY_PASSWORD: ${{ secrets.WIN_CERTIFICATE_PWD }}

- name: Upload to Partner Center
  uses: microsoft/store-submission-action@v1
  with:
    seller-id:      ${{ secrets.MS_SELLER_ID }}
    product-id:     ${{ secrets.MS_PRODUCT_ID }}
    package-path:   dist/AppName.msix
    tenant-id:      ${{ secrets.MS_TENANT_ID }}
    client-id:      ${{ secrets.MS_CLIENT_ID }}
    client-secret:  ${{ secrets.MS_CLIENT_SECRET }}

Publication goes through Microsoft moderation (usually 1–3 business days). Updates proceed faster than first publication.

Timeline

Preparation of MSIX, passing WACK, and first publication to Microsoft Store: 3–5 business days.