VirtualBox

source: vbox/trunk/doc/manual/en_US/man_VBoxManage-getextradata.xml@ 82969

Last change on this file since 82969 was 82969, checked in by vboxsync, 5 years ago

Copyright year updates - manual ones.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 5.4 KB
Line 
1<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 manpage, user manual, usage: VBoxManage getextradata
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-getextradata" lang="en">
21 <refentryinfo>
22 <pubdate>August 2019</pubdate>
23 <title>VBoxManage getextradata</title>
24 </refentryinfo>
25
26 <refmeta>
27 <refentrytitle>VBoxManage-getextradata</refentrytitle>
28 <manvolnum>1</manvolnum>
29 </refmeta>
30
31 <refnamediv>
32 <refname>VBoxManage-getextradata</refname>
33 <refpurpose>view keyword values that are associated with a virtual machine or
34 configuration</refpurpose>
35 <refclass>Oracle VM VirtualBox</refclass>
36 </refnamediv>
37
38 <refsynopsisdiv>
39 <cmdsynopsis id="synopsis-vboxmanage-getextradata">
40<!-- The 'id' is mandatory and must start with 'synopsis-'. -->
41 <command>VBoxManage getextradata</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 <group choice="plain">
48 <arg choice="req"><replaceable>keyword</replaceable></arg>
49 <arg choice="opt">enumerate</arg>
50 </group>
51 </cmdsynopsis>
52 </refsynopsisdiv>
53
54 <refsect1>
55 <title>Description</title>
56 <para>
57 The <command>VBoxManage getextradata</command> command enables you
58 to retrieve keyword data that is associated with a virtual machine
59 (VM) or with an &product-name; configuration.
60 </para>
61 <variablelist>
62 <varlistentry>
63 <term><literal>global</literal></term>
64 <listitem><para>
65 Specifies to retrieve information about the configuration
66 rather than a VM.
67 </para></listitem>
68 </varlistentry>
69 <varlistentry>
70 <term><replaceable>uuid</replaceable> | <replaceable>vmname</replaceable></term>
71 <listitem><para>
72 Specifies the Universally Unique Identifier (UUID) or name
73 of the VM.
74 </para></listitem>
75 </varlistentry>
76 <varlistentry>
77 <term><literal>enumerate</literal></term>
78 <listitem><para>
79 Shows all keyword values for the specified VM or
80 configuration.
81 </para></listitem>
82 </varlistentry>
83 <varlistentry>
84 <term><replaceable>keyword</replaceable></term>
85 <listitem><para>
86 Specifies the keyword for which to retrieve its value.
87 </para></listitem>
88 </varlistentry>
89 </variablelist>
90 </refsect1>
91
92 <refsect1>
93 <title>Examples</title>
94 <remark role="help-scope" condition="GLOBAL"/>
95 <para>
96 The following command retrieves the <literal>installdate</literal>
97 keyword value for the <literal>Fedora5</literal> VM:
98 </para>
99<screen>$ VBoxManage getextradata Fedora5 installdate
100VirtualBox Command Line Management Interface Version <replaceable>version-number</replaceable>
101(C) 2005-2019 Oracle Corporation
102All rights reserved.
103
104Value: 2006.01.01</screen>
105 <para>
106 The following command retrieves the information for all keywords
107 of the <literal>OracleLinux7u4</literal> VM:
108 </para>
109<screen>$ VBoxManage getextradata OracleLinux7u4 enumerate
110Key: GUI/LastCloseAction, Value: PowerOff
111Key: GUI/LastGuestSizeHint, Value: 1048,696
112Key: GUI/LastNormalWindowPosition, Value: 851,286,1048,738</screen>
113 <para>
114 The following command retrieves the information for all keywords
115 in the configuration:
116 </para>
117<screen>$ VBoxManage getextradata global enumerate
118Key: GUI/Details/Elements, Value: general,system,preview,display,storage,audio,network,usb,sharedFolders,description
119Key: GUI/DetailsPageBoxes, Value: general,system,preview,display,storage,audio,network,usb,sharedFolders,description
120Key: GUI/GroupDefinitions/, Value: m=43349dd8-2aa3-41b8-988f-0e255ce68090,m=9ebcd81e-5231-48ce-a27d-28218757f3fe,m=c690e8b1-93a0-4c95-9cd7-6437fff93251,m=f7c1e10d-3722-4891-887e-07b3c4104946
121Key: GUI/HideDescriptionForWizards, Value: NewVM
122Key: GUI/LastItemSelected, Value: m=ol7u4
123Key: GUI/LastWindowPosition, Value: 951,510,960,520
124Key: GUI/RecentFolderCD, Value: C:/Users/user1
125Key: GUI/RecentListCD, Value: C:\Users\user1\V1.iso,C:\Users\user1\V2.iso,C:\Users\user1\V3.iso
126Key: GUI/SplitterSizes, Value: 318,637
127Key: GUI/SuppressMessages, Value: remindAboutMouseIntegration,remindAboutAutoCapture
128Key: GUI/Toolbar/MachineTools/Order, Value: Details
129Key: GUI/Tools/LastItemsSelected, Value: Welcome,Details
130Key: GUI/UpdateCheckCount, Value: 71
131Key: GUI/UpdateDate, Value: 1 d, 2019-04-10, stable, 5.2.22
132Key: GUI/VirtualMediaManager/Details/Expanded, Value: true</screen>
133 </refsect1>
134
135 <refsect1>
136 <title>See Also</title>
137 <para>
138 <xref linkend="vboxmanage-setextradata" />
139 </para>
140 </refsect1>
141</refentry>
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette