Pyinstaller 创建需要管理员的可执行文件

Pyinstaller 创建需要管理员的可执行文件

我正在尝试将 python 脚本打包成可执行文件。可执行文件名称中包含单词“update”,并且生成的可执行文件需要 UAC 提升。我有一个清单文件,我尝试让 pyinstaller 生成一个正常的可执行文件,但它不起作用。

这是清单文件:

    <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<assembly manifestVersion="1.0" xmlns="urn:schemas-microsoft-com:asm.v1">
  <assemblyIdentity name="firmware_updater" processorArchitecture="amd64" type="win32" version="1.0.0.0"/>
  <dependency>
    <dependentAssembly>
      <assemblyIdentity language="*" name="Microsoft.Windows.Common-Controls" processorArchitecture="amd64" publicKeyToken="6595b64144ccf1df" type="win32" version="6.0.0.0"/>
    </dependentAssembly>
  </dependency>
  <trustInfo xmlns="urn:schemas-microsoft-com:asm.v3">
      <security>
          <requestedPrivileges>
              <requestedExecutionLevel
                  level="asInvoker"
                  uiAccess="false"
              />  
          </requestedPrivileges>
      </security>
  </trustInfo>
  <asmv3:application xmlns:asmv3="urn:schemas-microsoft-com:asm.v3">
    <asmv3:windowsSettings xmlns="http://schemas.microsoft.com/SMI/2005/WindowsSettings">
      <dpiAware>true</dpiAware>
    </asmv3:windowsSettings>
  </asmv3:application>
</assembly>

我对 pyinstaller 使用的命令是:

pyinstaller --onefile --icon .\<filename>.ico --manifest .\<filename>.exe.manifest --exclude-module tkinter --exclude-module IPython .\<filename>.py

清单文件与 python 脚本位于同一目录中。

我正在使用 Python 2.7.16 和 Pyinstaller 3.4。

如何让 pyinstaller 生成不需要 elavation 的可执行文件?

相关内容