Request UAC elevation from within a Python script?

前端 未结 11 646

I want my Python script to copy files on Vista. When I run it from a normal cmd.exe window, no errors are generated, yet the files are NOT copied. If I run

11条回答
  •  抹茶落季
    2020-11-22 05:45

    It seems there's no way to elevate the application privileges for a while for you to perform a particular task. Windows needs to know at the start of the program whether the application requires certain privileges, and will ask the user to confirm when the application performs any tasks that need those privileges. There are two ways to do this:

    1. Write a manifest file that tells Windows the application might require some privileges
    2. Run the application with elevated privileges from inside another program

    This two articles explain in much more detail how this works.

    What I'd do, if you don't want to write a nasty ctypes wrapper for the CreateElevatedProcess API, is use the ShellExecuteEx trick explained in the Code Project article (Pywin32 comes with a wrapper for ShellExecute). How? Something like this:

    When your program starts, it checks if it has Administrator privileges, if it doesn't it runs itself using the ShellExecute trick and exits immediately, if it does, it performs the task at hand.

    As you describe your program as a "script", I suppose that's enough for your needs.

    Cheers.

提交回复
热议问题