Resolved! Get command arguments in Powershell scripts
Hi all
I'm trying to get Command-Arguments in a self-made script in Powershell.
On Python it is:
demisto.args().get('<command-argument>')
What is it in Powershell? Because I tried it with:
$demisto.Args()["<command-argument>"]
But this didn't worked on
...


