Windows desktop application build and code signing

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

Building and Signing Desktop Applications for Windows

Code signing is a mandatory step before distributing Windows applications. Without a signature, SmartScreen blocks installation with a "Unknown Publisher" warning. With a valid signature and good reputation, installation proceeds without warnings.

Build tools

Electron + electron-builder — the most common stack for cross-platform applications:

# electron-builder.yml
appId:   com.company.appname
productName: AppName

win:
  target:
    - target: nsis    # standard installer
    - target: zip     # portable version
  icon: build/icon.ico
  sign: true

nsis:
  oneClick:        false
  perMachine:      true
  allowToChangeInstallationDirectory: true

Wix Toolset — for MSI packages (enterprise distribution via SCCM/Intune):

<!-- product.wxs -->
<Product Id="*" Name="AppName" Version="1.0.0" Manufacturer="Company">
  <Package Compressed="yes" />
  <Directory Id="TARGETDIR" Name="SourceDir">
    <Directory Id="ProgramFilesFolder">
      <Directory Id="INSTALLFOLDER" Name="AppName" />
    </Directory>
  </Directory>
  <Component Id="MainExecutable" Directory="INSTALLFOLDER">
    <File Source="AppName.exe" KeyPath="yes" />
  </Component>
</Product>

Code Signing

Code signing certificate: EV (Extended Validation) — immediately provides good SmartScreen reputation; OV (Organization Validation) — requires building reputation.

# Signing via signtool.exe
signtool sign `
  /fd SHA256 `
  /tr http://timestamp.digicert.com `
  /td SHA256 `
  /f certificate.pfx `
  /p $env:CERT_PASSWORD `
  "dist\AppName-Setup.exe"

# Verify signature
signtool verify /pa "dist\AppName-Setup.exe"

Auto-signing in CI/CD (GitHub Actions)

- name: Sign Windows executable
  env:
    CERTIFICATE_BASE64: ${{ secrets.WINDOWS_CERTIFICATE_BASE64 }}
    CERTIFICATE_PASSWORD: ${{ secrets.WINDOWS_CERTIFICATE_PASSWORD }}
  run: |
    $cert = [Convert]::FromBase64String($env:CERTIFICATE_BASE64)
    [IO.File]::WriteAllBytes("certificate.pfx", $cert)
    & "C:\Program Files (x86)\Windows Kits\10\bin\10.0.22621.0\x64\signtool.exe" `
      sign /fd SHA256 /tr http://timestamp.digicert.com /td SHA256 `
      /f certificate.pfx /p $env:CERTIFICATE_PASSWORD `
      "dist\AppName-Setup.exe"

Timeline

Setup of Windows build and signing: 2–3 business days. Obtaining EV certificate — 3–7 days from CA (DigiCert, Sectigo).