Skip to content

Commit ed8ca82

Browse files
authored
fix: update backup class references (#65)
Reflect move of vma,vbk and xva support from hypervisor to archive
1 parent bc657a3 commit ed8ca82

4 files changed

Lines changed: 30 additions & 16 deletions

File tree

docs/source/projects/dissect.archive/index.rst

Lines changed: 27 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,11 @@ dissect.archive
88
:octicon:`mark-github` View on GitHub
99

1010
A Dissect module implementing parsers for various archive and backup formats. Currently has support for:
11-
- WIM (Windows Imaging Format)
11+
12+
* WIM (Windows Imaging Format, :class:`~dissect.archive.wim.WIM`)
13+
* VMA (:class:`~dissect.archive.vma.VMA`)
14+
* XVA (:class:`~dissect.archive.xva.XVA`)
15+
* VBK (:class:`~dissect.archive.vbk.VBK`)
1216

1317

1418
Installation
@@ -41,6 +45,28 @@ listing of the root directory and read a file from a WIM archive:
4145
file_fh = image.get("/file.txt").open() # This is just another file-like object
4246
print(file_fh.read())
4347
48+
Tools
49+
-----
50+
51+
.. sphinx_argparse_cli::
52+
:module: dissect.archive.tools.backup
53+
:func: main
54+
:prog: vma-extract
55+
:description: Utility to extract all files contained in a VMA backup.
56+
:hook:
57+
.. sphinx_argparse_cli::
58+
:module: dissect.archive.tools.backup
59+
:func: main
60+
:prog: vbk-extract
61+
:description: Utility to extract all files contained in a VBK backup.
62+
:hook:
63+
.. sphinx_argparse_cli::
64+
:module: dissect.archive.tools.backup
65+
:func: main
66+
:prog: backup-extract
67+
:description: Utility to extract all files from supported backup formats.
68+
:hook:
69+
4470
Reference
4571
---------
4672

docs/source/projects/dissect.hypervisor/index.rst

Lines changed: 1 addition & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,7 @@ dissect.hypervisor
77

88
:octicon:`mark-github` View on GitHub
99

10-
A Dissect module implementing parsers for various hypervisor disk, backup and configuration files.
11-
12-
* Backup formats
13-
14-
* VMA (:class:`~dissect.hypervisor.backup.vma.VMA`)
15-
* XVA (:class:`~dissect.hypervisor.backup.xva.XVA`)
10+
A Dissect module implementing parsers for various hypervisor disk and configuration files.
1611

1712
* Metadata descriptors
1813

@@ -65,13 +60,6 @@ parser you need.
6560
Tools
6661
-----
6762

68-
.. sphinx_argparse_cli::
69-
:module: dissect.hypervisor.tools.vma
70-
:func: main
71-
:prog: vma-extract
72-
:description: Utility to extract all files contained in a VMA backup.
73-
:hook:
74-
7563
.. sphinx_argparse_cli::
7664
:module: dissect.hypervisor.tools.envelope
7765
:func: main

0 commit comments

Comments
 (0)