Reputation: 415
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
Reputation: 415
In the platform SDK there is a file called MT. exe which can embed manifests into an exe (see here:)
Upvotes: 2
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.
Upvotes: 1