Is it possible to call a PowerShell command directly in the pipelines groovy script? While using custom jobs in Jenkins I am able to call the command with the PowerShell Plu
You can use the sh command like this:
sh
sh """ echo 'foo' # bar echo 'hello' """
Comments are supported in here.