我将PowerCLI的输出存储在一个变量中。我想检查字符串中是否存在该字符串,如果存在则继续进行for循环。
下面是我的脚本:
$stringtosearch = "test"
$getds = Get-Datastore | Select-Object -ExpandProperty Name
if ($dsname -contains $getds) {
Write-Host "datastore exists"
continue
}
上面的脚本没有进入循环,而是继续循环。