I have problems to pass an array to PowerShell script as parameter from CMD. Here an example of the PS code:
[CmdletBinding()]
Param(
[string[]]$serverArray,
)
$serviceName = 'service1'
function getState {
Process {
$serverArray
foreach ($server in $serverArray) {
$servState = (Get-WmiObject Win32_Service -ComputerName $server -Filter "name='$serviceName'").State
}
}
getState
How I call script from CMD:
powershell -file .\script.ps1 -serverArray Server1,Server2
I get an error because $serverArray
is not passed an array:
Server1,Server2 Get-WmiObject : The RPC server is unavailable. (Exception from HRESULT: 0x800706BA) At C:\script.ps1:58 char:29 + $servState = (Get-WmiObject <<<< Win32_Service -ComputerName $server -Filter "name='$serviceName'").State + CategoryInfo : InvalidOperation: (:) [Get-WmiObject], COMException + FullyQualifiedErrorId : GetWMICOMException,Microsoft.PowerShell.Commands.GetWmiObjectCommand
If I run the same command from a PowerShell window it works because the script accepts $serverArray
as an array:
.\script.ps1 -serverArray Server1,Server2
Server1 Server2