Update VMToolsManagement.psm1

Update the quotes on line 1222 so that the module import no longer errors out.
This commit is contained in:
Kyle Ruddy
2018-01-09 14:55:28 -05:00
committed by GitHub
parent 23f215be35
commit 02286dbe53

View File

@@ -1219,7 +1219,7 @@ Function Invoke-VMToolsUpgradeInVMs {
End {
#Verify all threads completed
while (($jobs | Where-Object {$_.Handle.iscompleted -ne Completed}).Count -gt 0) {
while (($jobs | Where-Object {$_.Handle.iscompleted -ne "Completed"}).Count -gt 0) {
Start-Sleep -Seconds 5
}