私は XenServer を使用しています。プールに接続して、すべての VM のリストを取得しています。ここで、VM にログインする必要があります。すべての VM で exe ファイルを実行します。誰でも何か考えがありますか?
ありがとうございました!
connection = new Connection(url);
Session.loginWithPassword(connection, userName, Password, APIVersion.latest().toString());
Map<VM, VM.Record> vms = VM.getAllRecords(connection);
for (VM.Record record : vms.values()){
if (!record.isATemplate){
// now i need somehow to connect with the VM username and password
// now i need to run an exe file.
}
}