Python Kid
Python Kid

Reputation: 415

Creating an exe with pyInstaller that uses UAC

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.

Upvotes: 1

Views: 1295

Answers (2)

Python Kid
Python Kid

Reputation: 415

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

Upvotes: 2

Zerstoren
Zerstoren

Reputation: 126

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

Upvotes: 1

Related Questions