1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200
|
=======
Windows
=======
.. toctree::
:hidden:
app
visualstudio
+--------+-------+---------+--------+---+-----+--------+-----+-------+
| Host Platform Support (:ref:`platform-support-key`) |
+--------+-------+---------+--------+---+-----+--------+-----+-------+
| macOS | Windows | Linux |
+--------+-------+-----+--------+-------+-----+--------+-----+-------+
| x86‑64 | arm64 | x86 | x86‑64 | arm64 | x86 | x86‑64 | arm | arm64 |
+========+=======+=====+========+=======+=====+========+=====+=======+
| | | | |f| | | | | | |
+--------+-------+-----+--------+-------+-----+--------+-----+-------+
Briefcase supports two output formats for Windows apps:
* A :doc:`./app` with a pre-compiled binary; and
* A :doc:`./visualstudio` which can be used to build an app with a customized
binary.
The default output format for Windows is a :doc:`./app`.
Configuration options between the :doc:`./app` and :doc:`./visualstudio` formats are
identical.
.. _windows-prerequisites:
Prerequisites
=============
Briefcase requires installing Python 3.9+.
Packaging format
================
Briefcase supports two packaging formats for a Windows app:
1. As an MSI installer (the default output of ``briefcase package windows``, or by using
``briefcase package windows -p msi``); or
2. As a ZIP file containing all files needed to run the app (by using ``briefcase
package windows -p zip``).
Briefcase uses the `WiX Toolset <https://www.firegiant.com/wixtoolset/>`__ to build an
MSI installer for a Windows app.
Icon format
===========
Windows apps installers use multi-format ``.ico`` icons; these icons should
contain images in the following sizes:
* 16px
* 32px
* 48px
* 64px
* 256px
Windows Apps do not support splash screens or installer images.
Additional options
==================
The following options can be provided at the command line when packaging
Windows apps.
``--file-digest <digest>``
~~~~~~~~~~~~~~~~~~~~~~~~~~
The digest algorithm to use for code signing files in the project. Defaults to
``sha256``.
``--use-local-machine-stores``
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
By default, the certificate for code signing is assumed to be in the Current
User's certificate stores. Use this flag to indicate the certificate is in the
Local Machine's certificate stores.
``--cert-store <store>``
~~~~~~~~~~~~~~~~~~~~~~~~
The internal Windows name for the certificate store containing the certificate
for code signing. Defaults to ``My``.
Common Stores:
+--------------------------------------------+------------------+
| Personal | My |
+--------------------------------------------+------------------+
| Intermediate Certification Authorities | CA |
+--------------------------------------------+------------------+
| Third-Party Root Certification Authorities | AuthRoot |
+--------------------------------------------+------------------+
| Trusted People | TrustedPeople |
+--------------------------------------------+------------------+
| Trusted Publishers | TrustedPublisher |
+--------------------------------------------+------------------+
| Trusted Root Certification Authorities | Root |
+--------------------------------------------+------------------+
``--timestamp-url <url>``
~~~~~~~~~~~~~~~~~~~~~~~~~
The URL of the Timestamp Authority server to timestamp the code signing.
Defaults to ``http://timestamp.digicert.com``.
``--timestamp-digest <url>``
~~~~~~~~~~~~~~~~~~~~~~~~~~~~
The digest algorithm to request the Timestamp Authority server uses for the
timestamp for code signing. Defaults to ``sha256``.
Application configuration
=========================
.. currentmodule:: windows
The following options can be added to the
``tool.briefcase.app.<appname>.windows`` section of your ``pyproject.toml``
file.
.. attribute:: system_installer
Controls whether the app will be installed as a per-user or per-machine app.
Per-machine apps are "system" apps, and require admin permissions to run the
installer; however, they are installed once and shared between all users on a
computer.
If ``true`` the installer will attempt to install the app as a per-machine app,
available to all users. If ``false``, the installer will install as a per-user
app. If undefined the installer will ask the user for their preference.
.. attribute:: use_full_install_path
Controls whether the app will be installed using a path which includes both the
application name *and* the company or developer's name. If ``true`` (the
default), the app will be installed to ``Program Files\<Author Name>\<Project
Name>``. If ``false``, it will be installed to ``Program Files\<Project Name>``.
Using the full path makes sense for larger companies with multiple applications,
but less so for a solo developer.
.. attribute:: version_triple
Python and Briefcase allow any valid `PEP440 version number
<https://peps.python.org/pep-0440/>`_ as a :attr:`version` specifier. However, MSI
installers require a strict integer triple version number. Many
PEP440-compliant version numbers, such as "1.2", "1.2.3b3", and "1.2.3.4", are
invalid for MSI installers.
Briefcase will attempt to convert your :attr:`version` into a valid MSI value by
extracting the first three parts of the main series version number (excluding
pre, post and dev version indicators), padding with zeros if necessary:
* ``1.2`` becomes ``1.2.0``
* ``1.2b4`` becomes ``1.2.0``
* ``1.2.3b3`` becomes ``1.2.3``
* ``1.2.3.4`` becomes ``1.2.3``.
However, if you need to override this default value, you can define
:attr:`version_triple` in your app settings. If provided, this value will be used in the
MSI configuration file instead of the auto-generated value.
Platform quirks
===============
Use caution with ``--update-support``
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Care should be taken when using the ``--update-support`` option to the
``update``, ``build`` or ``run`` commands. Support packages in Windows apps are
overlaid with app content, so it isn't possible to remove all old support files
before installing new ones.
Briefcase will unpack the new support package without cleaning up existing
support package content. This *should* work; however, ensure a reproducible
release artefacts, it is advisable to perform a clean app build before release.
Packaging with ``--adhoc-sign``
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Using the ``--adhoc-sign`` option on Windows results in no signing being
performed on the packaged app. This will result in your application being
flagged as coming from an unverified publisher. This may limit who is able to
install your app.
Tkinter is not available
~~~~~~~~~~~~~~~~~~~~~~~~
Briefcase uses the official `Python.org Windows Embeddable package
<https://docs.python.org/3/using/windows.html#windows-embeddable>`__ to provide Python
binaries for the Windows app. This embeddable distribution is missing some standard
library modules that would be part of a normal Python.org install - most notably
``tkinter``. This is due to the difficulty in distributing the Tk libraries needed by
Tkinter in a way that is compatible with the Windows embedded binary format.
|