here is the script of powershell
function runvms{
param([string]$path)
$vmrun = “C:\Program Files (x86)\VMware\VMware Workstation\vmrun.exe”
$List = get-childitem $path -recurse | where {$_.extension -eq “.vmx”} | foreach-object -process { $_.FullName }
ForEach($vmx in $List){
& $vmrun -t ws start $vmx
}
}
The best technical virtulization website in Chinese