Powershell call operator with multiple arguments

automationpowershellwindows-server-2008windows-server-2008-r2

I am trying to use the powershell call operator to essentially run the following command:

"C:\Program Files (x86)\PuTTY\plink.exe" "-v -agent -m C:\Scripts\idrac_powerup_commands.txt root@[servername]"

Current Code

$runputtyscript = @()
$runputtyscript += "-v"
$runputtyscript += "-agent"
$runputtyscript += "-m C:\Scripts\idrac_powerup_commands.txt"

& 'C:\Program Files (x86)\PuTTY\plink.exe' $allArgs root@servername

Problem

This executes, but the script doesn't execute the file with the commands the same that it does if the original string was executed from the command line.. It shows me the admin console (so it has logged in, authenticated with the public key, etc.) but it just hasn't run the script I asked it to run.

Things I've tried

  • Moving the filename component of -m to its own argument
  • Putting quotes around the filename component of -m

Question

Maybe more succinct way of asking: What is the proper way to use arguments that then have their own arguments (e.g. "-m [filename] -v -a" with the call operator (&) in powershell?

Best Answer

You may be running into the case where your variable is not being handled by the Win32 binary. You can ease this along through double-quotes:

'C:\Program Files (x86)\PuTTY\plink.exe' "$allArgs" root@servername

I had the same problem with netsh a while back.