Comment puis-je passer des couleurs variables à imprimer depuis un script python en appelant une fonction powershell.
function check($color){
Write-Host "I have a $color shirt"
}
import subprocess
color = "blue"
subprocess.call(["powershell.exe", '-Command', '&{. "./colortest.ps1"; & check(color)}'])
Le code ci-dessus donne lieu à l'erreur suivante
color : The term 'color' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the
spelling of the name, or if a path was included, verify that the path is correct and try again.
At line:1 char:27
+ &{. "./colortest.ps1"; & check(color)}
+ ~~~
+ CategoryInfo : ObjectNotFound: (color:String) [], CommandNotFoundException
+ FullyQualifiedErrorId : CommandNotFoundException
Si j'insère directement la couleur réelle en tant que paramètre constant, j'obtiens le résultat souhaité, mais son remplacement par une variable échoue.
subprocess.call(["powershell.exe", '-Command', '&{. "./colortest.ps1"; & check("blue")}'])
Résultat
I have a blue shirt