I have a couple of lines in a script that are giving me an issue:

Connect-VIServer "test-vcenter.test.com" -User user -Password pass
Get-VM -Name "test-vm" | Get-Stat -Stat cpu.ready.summation -Realtime | Select-Object -First 1  value | Format-List

When running this I receive this as output:

Operation is not valid due to the current state of the object.
At :line:0 char:0

If the second line is run a few seconds after the connection to vCenter is made I receive the output I expect. What I believe is happening is that my connection to vCenter hasn't completed before my second line has started. I am not sure of the best way to wait for or what to check for in a completed connection.

link|improve this question

Never had this happen. Usually I see the connection to vCenter happen before the 2nd command even tries to run. – Chadddada Jul 1 '11 at 2:36
feedback

1 Answer

up vote 0 down vote accepted

you might try using start-sleep command in PS

http://technet.microsoft.com/en-us/library/ee177002.aspx

however -- as with all "sleep" functions, this isn't necessarily the best way to fix a timing problem as your pushback never may never account for all possible latency issues.

a better solution would be to test for the completion of a command (and I'm not sure how to do that with the VMWare CLI)

link|improve this answer
Start-sleep is not the way I want to go. – pizzim13 Apr 27 '11 at 18:54
Using: Get-Stat -Entity "test-vm" -Stat cpu.ready.summation -Realtime | Select-Object -First 1 value | Format-List Resolved my issue – pizzim13 Apr 27 '11 at 20:48
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.