1

I have a python script which I would like to create an exe from, but It requires administrator privaleges. I would like to compile my script with pyInstaller, but I don't know if it has an option to enable UAC.

Python Kid
  • 313
  • 2
  • 7
  • 19

2 Answers2

2

In the platform SDK there is a file called MT. exe which can embed manifests into an exe (see here:)

Community
  • 1
  • 1
Python Kid
  • 313
  • 2
  • 7
  • 19
1

Maybe try py2exe? All code will be write on Linux, and compile to .exe on Windows 7 x64.

All work good and without administrator privaleges.

py2exe official site

Zerstoren
  • 126
  • 6
  • Thanks, but I would like the executable to be light (pyInstaller's single file exe feature) and I would like to have it support code-signing and other out of the box stuff – Python Kid Aug 13 '12 at 18:03