1 | <?xml version="1.0" encoding="UTF-8"?>
|
---|
2 | <!--
|
---|
3 | manpage, user manual, usage: VBoxManage setextradata
|
---|
4 |
|
---|
5 | Copyright (C) 2006-2020 Oracle Corporation
|
---|
6 |
|
---|
7 | This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
8 | available from http://www.virtualbox.org. This file is free software;
|
---|
9 | you can redistribute it and/or modify it under the terms of the GNU
|
---|
10 | General Public License (GPL) as published by the Free Software
|
---|
11 | Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
12 | VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
13 | hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
14 | -->
|
---|
15 | <!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
|
---|
16 | "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd"[
|
---|
17 | <!ENTITY % all.entities SYSTEM "all-entities.ent">
|
---|
18 | %all.entities;
|
---|
19 | ]>
|
---|
20 | <refentry id="vboxmanage-setextradata" lang="en">
|
---|
21 | <refentryinfo>
|
---|
22 | <pubdate>$Date: 2022-03-12 19:57:40 +0000 (Sat, 12 Mar 2022) $</pubdate>
|
---|
23 | <title>VBoxManage setextradata</title>
|
---|
24 | </refentryinfo>
|
---|
25 |
|
---|
26 | <refmeta>
|
---|
27 | <refentrytitle>VBoxManage-setextradata</refentrytitle>
|
---|
28 | <manvolnum>1</manvolnum>
|
---|
29 | </refmeta>
|
---|
30 |
|
---|
31 | <refnamediv>
|
---|
32 | <refname>VBoxManage-setextradata</refname>
|
---|
33 | <refpurpose>set a keyword value that is associated with a virtual machine or
|
---|
34 | configuration</refpurpose>
|
---|
35 | <refclass>&product-name;</refclass>
|
---|
36 | </refnamediv>
|
---|
37 |
|
---|
38 | <refsynopsisdiv>
|
---|
39 | <cmdsynopsis id="synopsis-vboxmanage-setextradata">
|
---|
40 | <!-- The 'id' is mandatory and must start with 'synopsis-'. -->
|
---|
41 | <command>VBoxManage setextradata</command>
|
---|
42 | <group choice="req">
|
---|
43 | <arg choice="plain">global</arg>
|
---|
44 | <arg choice="plain"><replaceable>uuid</replaceable></arg>
|
---|
45 | <arg choice="plain"><replaceable>vmname</replaceable></arg>
|
---|
46 | </group>
|
---|
47 | <arg choice="req"><replaceable>keyword</replaceable></arg>
|
---|
48 | <arg><replaceable>value</replaceable></arg>
|
---|
49 | </cmdsynopsis>
|
---|
50 | </refsynopsisdiv>
|
---|
51 |
|
---|
52 | <refsect1>
|
---|
53 | <title>Description</title>
|
---|
54 | <para>
|
---|
55 | The <command>VBoxManage setextradata</command> command enables you
|
---|
56 | to set a keyword value that is associated with a virtual machine
|
---|
57 | (VM) or with an &product-name; configuration.
|
---|
58 | </para>
|
---|
59 | <variablelist>
|
---|
60 | <varlistentry>
|
---|
61 | <term><literal>global</literal></term>
|
---|
62 | <listitem><para>
|
---|
63 | Sets information about the configuration rather than a VM.
|
---|
64 | </para></listitem>
|
---|
65 | </varlistentry>
|
---|
66 | <varlistentry>
|
---|
67 | <term><replaceable>uuid</replaceable>|<replaceable>vmname</replaceable></term>
|
---|
68 | <listitem><para>
|
---|
69 | Specifies the Universally Unique Identifier (UUID) or name
|
---|
70 | of the VM.
|
---|
71 | </para></listitem>
|
---|
72 | </varlistentry>
|
---|
73 | <varlistentry>
|
---|
74 | <term><replaceable>keyword</replaceable></term>
|
---|
75 | <listitem><para>
|
---|
76 | Specifies the keyword for which to set its value.
|
---|
77 | </para></listitem>
|
---|
78 | </varlistentry>
|
---|
79 | <varlistentry>
|
---|
80 | <term><replaceable>value</replaceable></term>
|
---|
81 | <listitem><para>
|
---|
82 | Specifies the keyword value. Specifying no value removes the
|
---|
83 | keyword.
|
---|
84 | </para></listitem>
|
---|
85 | </varlistentry>
|
---|
86 | </variablelist>
|
---|
87 | </refsect1>
|
---|
88 |
|
---|
89 | <refsect1>
|
---|
90 | <title>Examples</title>
|
---|
91 | <remark role="help-scope" condition="GLOBAL"/>
|
---|
92 | <para>
|
---|
93 | The following command sets the <literal>installdate</literal>
|
---|
94 | keyword value for the <literal>Fedora5</literal> VM to
|
---|
95 | <literal>2019.01.01</literal>:
|
---|
96 | </para>
|
---|
97 | <screen>$ VBoxManage setextradata Fedora5 installdate 2019.01.01</screen>
|
---|
98 | <para>
|
---|
99 | The following command unsets the value of the
|
---|
100 | <literal>installdate</literal> keyword for the
|
---|
101 | <literal>Fedora5</literal> VM:
|
---|
102 | </para>
|
---|
103 | <screen>$ VBoxManage setextradata Fedora5 installdate</screen>
|
---|
104 | </refsect1>
|
---|
105 |
|
---|
106 | <refsect1>
|
---|
107 | <title>See Also</title>
|
---|
108 | <para>
|
---|
109 | <xref linkend="vboxmanage-getextradata" />
|
---|
110 | </para>
|
---|
111 | </refsect1>
|
---|
112 | </refentry>
|
---|