Invoke-command error when install Citrix VDA

353 Views Asked by At

I'm looking to install the Citrix VDA remotely. I ran this same command on the app server and it installed like I would expect. But now when I try to install it remotely with the invoke-command I get an error.

Invoke-Command -computer appserver.domain.com -scriptblock {start-process -FilePath "C:\XenDesktop 7.15\x64\XenDesktop Setup\XenDesktopVDASetup.exe" -ArgumentList "/noreboot /quiet /components VDA,plugins /masterimage /baseimage /enable_remote_assistance /enable_hdx_ports /optimize /controllers "ddc.domain.com""}

A positional parameter cannot be found that accepts argument 'ddc.domain.com'.
+ CategoryInfo          : InvalidArgument: (:) [Start-Process], ParameterBindingException
+ FullyQualifiedErrorId : PositionalParameterNotFound,Microsoft.PowerShell.Commands.StartProcessCommand
+ PSComputerName        : appserver.domain.com
2

There are 2 best solutions below

1
On

You should either put dcc.domain.com in single quotes: 'ddc.domain.com' or fix those double quotes. To use double quotes in a double quoted string, you'll need to double them up:

-ArgumentList "/noreboot /quiet /components VDA,plugins /masterimage /baseimage /enable_remote_assistance /enable_hdx_ports /optimize /controllers ""ddc.domain.com"""
0
On
-ArgumentList '/noreboot /quiet /components VDA,plugins /masterimage /baseimage /enable_remote_assistance /enable_hdx_ports /optimize /controllers "ddc.domain.com"'