:py:mod:`dissect.target.loaders.vmx` ==================================== .. py:module:: dissect.target.loaders.vmx Module Contents --------------- Classes ~~~~~~~ .. autoapisummary:: dissect.target.loaders.vmx.VmxLoader .. py:class:: VmxLoader(path, **kwargs) Bases: :py:obj:`dissect.target.loader.Loader` Load VMware virtual machine configuration (VMX) files. .. rubric:: References - https://docs.vmware.com/en/VMware-Workstation-Pro/17/com.vmware.ws.using.doc/GUID-A968EF50-BA25-450A-9D1F-F8A9DEE640E7.html # noqa .. py:method:: detect(path) :staticmethod: Detects wether this ``Loader`` class can load this specific ``path``. :param path: The target path to check. :returns: ``True`` if the ``path`` can be loaded by a ``Loader`` instance. ``False`` otherwise. .. py:method:: map(target) Maps the loaded path into a ``Target``. :param target: The target that we're mapping into.