public static void showAllVmxPaths() throws VmWareException {
        Properties prop = new Properties();
        VmWareServices vmWareServices = new VmWareServicesImpl(prop);
        Set<String> hostNameSet = vmWareServices.getHostNameSet();
        
        for (String vmHostName : hostNameSet) {
            ListResult result = vmWareServices.getVmWareCommand().list(vmHostName);
            System.out.println(toString(result.getList()));
        }
    }


    private static String toString(List<String> list) {
        StringBuffer strBuf = new StringBuffer();
        for (String text : list) {
            strBuf.append("- ").append(text).append(System.getProperty("line.separator"));
        }
        return strBuf.toString();
    }