Map<String, IDomain> computers = virtualMachine.getHypervisor().getDomains();
IDomain domain = computers.get(virtualMachine.getName());
if (domain != null) {
if( domain.isNotBlockedAndNotRunning() ) {
taskListener.getLogger().println("Starting, waiting for " + WAIT_TIME_MS + "ms to let it fully boot up...");
domain.create();
Thread.sleep(WAIT_TIME_MS);
int attempts = 0;
while (true) {
attempts++;