GeriOnline
GeriOnline
I have the impression that we are talking about different things. I mean the array with the server names at the beginning of the different scenario scripts. As an example,...
_$servers="AzSHCI1"_ does not solve the problem. You have to write _[array] $servers="AzSHCI1"_ - then it would work. It's a special PowerShell feature that if only one string is assigned only...
Another way with hard coded server names would be to write _$servers=,"AzSHCI1"_ for single nodes (another trick of PowerShell)