diff options
author | Mark Hammond <mhammond@skippinet.com.au> | 2008-05-02 12:48:15 (GMT) |
---|---|---|
committer | Mark Hammond <mhammond@skippinet.com.au> | 2008-05-02 12:48:15 (GMT) |
commit | 7c5c8e6823e476b46a30373e5a95e8b8e4c5fa09 (patch) | |
tree | 281a15194c99882fa645183f76aa5581ba57d9d2 /Doc/distutils | |
parent | f8cc64017ca0f33b1e21b1c9c9f5f30ebdc4da31 (diff) | |
download | cpython-7c5c8e6823e476b46a30373e5a95e8b8e4c5fa09.zip cpython-7c5c8e6823e476b46a30373e5a95e8b8e4c5fa09.tar.gz cpython-7c5c8e6823e476b46a30373e5a95e8b8e4c5fa09.tar.bz2 |
#2581: Vista UAC/elevation support for bdist_wininst
Diffstat (limited to 'Doc/distutils')
-rw-r--r-- | Doc/distutils/builtdist.rst | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/Doc/distutils/builtdist.rst b/Doc/distutils/builtdist.rst index cd2bd81..c4b8dbf 100644 --- a/Doc/distutils/builtdist.rst +++ b/Doc/distutils/builtdist.rst @@ -426,6 +426,13 @@ built-in functions in the installation script. also the configuration. For details refer to Microsoft's documentation of the :cfunc:`SHGetSpecialFolderPath` function. +Vista User Access Control (UAC) +=============================== + +Starting with Python 2.6, bdist_wininst supports a :option:`--user-access-control` +option. The default is 'none' (meaning no UAC handling is done), and other +valid values are 'auto' (meaning prompt for UAC elevation if Python was +installed for all users) and 'force' (meaning always prompt for elevation) .. function:: create_shortcut(target, description, filename[, arguments[, workdir[, iconpath[, iconindex]]]]) @@ -437,5 +444,3 @@ built-in functions in the installation script. and *iconindex* is the index of the icon in the file *iconpath*. Again, for details consult the Microsoft documentation for the :class:`IShellLink` interface. - - |