I try to run a script
powershell -File somescript.ps1 -Arg1 $false -Arg2 $false -Arg3 $false
I keep getting
A positional parameter cannot be found that accepts argument '$false'.
- I really want to see each parameters name, not just pass values without knowing what it is
- there are more parameters availble in the script with default values so I dont need to specify them
any help appreciated