Hello
I have the below script to update VCSA, I'm looking for assistance in order to be able to update multiple VCSA in parallel.
You could use Start-Job to launch multiple instances of your script, each handling a different VCSA.
Blog: lucd.info Twitter: @LucD22 Co-author PowerCLI Reference
Ok, there's no way for a loop and import VCSA list via TXT file?
That is exactly what I mean.
Loop over all VCSA, and for each VCSA use Start-Job to launch your script.
Have a look at my Running a background job post to see how to handle the Connect-VIServer inside the Start-Job code.
Blog: lucd.info Twitter: @LucD22 Co-author PowerCLI Reference
would you please guide me?
I'm not sure where shall I add my script into the function Running a background job
Your script should go into the $code variable.
But make sure that you pass the correct SessionId as a parameter on the Start-Job cmdlet.
Blog: lucd.info Twitter: @LucD22 Co-author PowerCLI Reference
