'Add credentials to subprocess.Popen Python

I have a code which call Powershell script from Python and return some result

    p = subprocess.Popen([
        "C:\\WINDOWS\\system32\\WindowsPowerShell\\v1.0\\powershell.exe",
        "-ExecutionPolicy", "Bypass",
        "-NoLogo",
        "-NoProfile",
        "-NonInteractive",
        "-File",
        ".\\GetVMHostPowerShell.ps1"
    ], stdout=subprocess.PIPE)
    psresult = p.communicate()[0]

It works fine, but I need an elevated permissions for my Powershell script and I want to execute subprocess as different user\ add some args with credentials or smth like this Could you please help with it?



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source