WMI がホストに接続できず、リスト内の次のコンピューターに移動できない場合に、スクリプトを実行し続ける方法を理解するのを手伝ってください。例外の後に続行を使用する必要がありますか?
import wmi
MachineList = ["Computer1","Computer2","Computer3"]
try:
for machines in MachineList:
c = wmi.WMI(machines) # <---- Go to next in the for loop when connection fail???
for os in c.Win32_OperatingSystem():
print os.Caption
except:
pass