vm-name が vm.txt ファイルに存在する場合、Powershell スクリプトを開始する必要があります。例:
get-vm | foreach-object -process {
If ($_.Name --matches one of the entries in the .txt File) {
execute this part }
else { execute this part }
vm.txt ファイル: server01 server02 server03
どうもありがとう!!