I\'m trying to start a PowerShell script from python like this:
psxmlgen = subprocess.Popen([r\'C:\\WINDOWS\\system32\\WindowsPowerShell\\v1.0\\powershell.ex
For those of us who wanted to know how to display the values of arg1, arg2 and arg3 after it was passed to powershell, all you need to do is:
Write-Host $args[0] Write-Host $args[1] Write-Host $args[2]