VirtualBox

source: vbox/trunk/doc/manual/en_US/man_VBoxManage-setproperty.xml@ 91099

Last change on this file since 91099 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: 8.1 KB
Line 
1<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 manpage, user manual, usage: VBoxManage setproperty
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-setproperty" lang="en">
21 <refentryinfo>
22 <pubdate>August 2019</pubdate>
23 <title>VBoxManage setproperty</title>
24 </refentryinfo>
25
26 <refmeta>
27 <refentrytitle>VBoxManage-setproperty</refentrytitle>
28 <manvolnum>1</manvolnum>
29 </refmeta>
30
31 <refnamediv>
32 <refname>VBoxManage-setproperty</refname>
33 <refpurpose>change global settings</refpurpose>
34 <refclass>Oracle VM VirtualBox</refclass>
35 </refnamediv>
36
37 <refsynopsisdiv>
38<!-- The 'id' is mandatory and must start with 'synopsis-'. -->
39 <cmdsynopsis id="synopsis-vboxmanage-setproperty">
40 <command>VBoxManage setproperty</command>
41 <arg choice="req"><replaceable>property-name</replaceable></arg>
42 <arg choice="req"><replaceable>property-value</replaceable></arg>
43 </cmdsynopsis>
44 </refsynopsisdiv>
45
46 <refsect1>
47 <title>Description</title>
48 <para>
49 The <command>VBoxManage setproperty</command> command enables you
50 to change global settings that affect the entire &product-name;
51 installation. Some of these settings correspond to the settings in
52 the <emphasis role="bold">Preferences</emphasis> dialog in the
53 VirtualBox Manager.
54 </para>
55 <para>
56 The following properties are available:
57 </para>
58 <variablelist>
59 <varlistentry>
60 <term><literal>autostartdbpath</literal></term>
61 <listitem><para>
62 Specifies the path to the autostart database. Valid values
63 are <literal>null</literal>, which disables the autostart
64 database, or the name of the folder that contains the
65 database. See <xref linkend="autostart" />.
66 </para></listitem>
67 </varlistentry>
68 <varlistentry>
69 <term><literal>defaultfrontend</literal></term>
70 <listitem><para>
71 Specifies the global default VM frontend. Valid values are
72 <literal>default</literal>, which specifies the default
73 frontend, or the name of the frontend to use.
74 </para></listitem>
75 </varlistentry>
76 <varlistentry>
77 <term><literal>hwvirtexclusive</literal></term>
78 <listitem><para>
79 Specifies whether &product-name; makes exclusive use of the
80 Intel VT-x or AMD-V hardware virtualization extensions of
81 the host system's processor. See <xref linkend="hwvirt" />.
82 </para><para>
83 Valid values are as follows:
84 </para><itemizedlist>
85 <listitem><para>
86 <literal>on</literal> enables &product-name; to make
87 exclusive use of these extensions. This is the default
88 value.
89 </para></listitem>
90 <listitem><para>
91 <literal>off</literal> shares these extensions with
92 other hypervisors that run simultaneously. Note that
93 disabling this setting has negative performance
94 implications.
95 </para></listitem>
96 </itemizedlist></listitem>
97 </varlistentry>
98 <varlistentry>
99 <term><literal>logginglevel</literal></term>
100 <listitem><para>
101 Specifies the VBoxSVC release logging details. See
102 <ulink url="http://www.virtualbox.org/wiki/VBoxLogging" />.
103 </para></listitem>
104 </varlistentry>
105 <varlistentry>
106 <term><literal>loghistorycount</literal></term>
107 <listitem><para>
108 Specifies the number of rotated VM logs to retain.
109 </para></listitem>
110 </varlistentry>
111 <varlistentry>
112 <term><literal>machinefolder</literal></term>
113 <listitem><para>
114 Specifies the default folder in which virtual machine (VM)
115 definitions are stored. Valid values are
116 <literal>default</literal>, which specifies the default
117 storage folder, or the name of the folder to use. See
118 <xref linkend="vboxconfigdata" />.
119 </para></listitem>
120 </varlistentry>
121 <varlistentry>
122 <term><literal>proxymode</literal></term>
123 <listitem><para>
124 Configures the mode for an HTTP proxy server. Valid values
125 are as follows:
126 </para><variablelist>
127 <varlistentry>
128 <term><literal>manual</literal></term>
129 <listitem><para>
130 Configure the URL of a HTTP proxy server manually,
131 using the <literal>proxyurl</literal> property value.
132 </para></listitem>
133 </varlistentry>
134 <varlistentry>
135 <term><literal>noproxy</literal></term>
136 <listitem><para>
137 Do not use an HTTP proxy server. A direct connection
138 to the Internet is used.
139 </para></listitem>
140 </varlistentry>
141 <varlistentry>
142 <term><literal>system</literal></term>
143 <listitem><para>
144 Detect the proxy settings automatically for the host
145 network. This is the default value.
146 </para></listitem>
147 </varlistentry>
148 </variablelist></listitem>
149 </varlistentry>
150 <varlistentry>
151 <term><literal>proxyurl</literal></term>
152 <listitem><para>
153 Specifies the URL for an HTTP proxy server when you specify
154 a manual proxy by setting the <literal>proxymode</literal>
155 property to <literal>manual</literal>.
156 </para></listitem>
157 </varlistentry>
158 <varlistentry>
159 <term><literal>vrdeauthlibrary</literal></term>
160 <listitem><para>
161 Specifies which library to use when external authentication
162 has been configured for a particular VM. Valid values are
163 <literal>default</literal>, which specifies the default
164 library, or the name of the library to use. See
165 <xref linkend="vbox-auth" />.
166 </para></listitem>
167 </varlistentry>
168 <varlistentry>
169 <term><literal>vrdeextpack</literal></term>
170 <listitem><para>
171 Specifies the library that implements the VirtualBox Remote
172 Desktop Extension (RDE). Valid values are
173 <literal>null</literal>, which disables the RDE, or the name
174 of the library to use.
175 </para></listitem>
176 </varlistentry>
177 <varlistentry>
178 <term><literal>websrvauthlibrary</literal></term>
179 <listitem><para>
180 Specifies which library the web service uses to authenticate
181 users. Valid values are <literal>default</literal>, which
182 specifies the default library, <literal>null</literal>,
183 which disables authentication, or the name of the library to
184 use. For information about the &product-name; web service,
185 see <xref linkend="VirtualBoxAPI" />.
186 </para></listitem>
187 </varlistentry>
188 </variablelist>
189 </refsect1>
190
191 <refsect1>
192 <title>Examples</title>
193 <remark role="help-scope" condition="GLOBAL" />
194 <para>
195 The following command configures &product-name; to use the
196 specified HTTP proxy server.
197 </para>
198<screen>$ VBoxManage setproperty proxymode manual
199$ VBoxManage setproperty proxyurl "http://myproxy.com:8080"</screen>
200 </refsect1>
201
202 <refsect1>
203 <title>See Also</title>
204 <para>
205 <xref linkend="vboxmanage-startvm" />
206 </para>
207 </refsect1>
208</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