VirtualBox

Changeset 49756 in vbox


Ignore:
Timestamp:
Dec 3, 2013 2:53:28 PM (11 years ago)
Author:
vboxsync
Message:

doc/manual: document more GUI restrictions

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/doc/manual/en_US/user_AdvancedTopics.xml

    r49703 r49756  
    21382138      the default behavior, use</para>
    21392139      <screen>VBoxManage setextradata "VM name" GUI/RestrictedRuntimeMenus</screen>
     2140
     2141      <para>You can also disable (i.e. blacklist) certain menu actions of certain
     2142        menus. Use the following command to disable certain actions of the
     2143        <emphasis>Application</emphasis> menu (only available on Mac OS X hosts):</para>
     2144      <screen>VBoxManage setextradata "VM name" GUI/RestrictedRuntimeApplicationMenuActions OPTION[,OPTION...]</screen>
     2145
     2146      <para>where <computeroutput>OPTION</computeroutput> is one of the
     2147        following keywords:</para><glosslist>
     2148        <glossentry>
     2149          <glossterm><computeroutput>All</computeroutput></glossterm>
     2150          <glossdef>
     2151            <para>Don't show any menu item in this menu.</para>
     2152          </glossdef>
     2153        </glossentry>
     2154        <glossentry>
     2155          <glossterm><computeroutput>About</computeroutput></glossterm>
     2156          <glossdef>
     2157            <para>Don't show the <emphasis>About</emphasis> menu item in this menu.</para>
     2158          </glossdef>
     2159        </glossentry>
     2160      </glosslist>
     2161
     2162      <para>This is a per-VM setting. Any combination of the above is allowed. To restore
     2163      the default behavior, use</para>
     2164      <screen>VBoxManage setextradata "VM name" GUI/RestrictedRuntimeMenus</screen>
     2165
     2166      <para>Use the following command to disable certain actions of the <emphasis>Machine</emphasis>
     2167        menu:</para>
     2168
     2169      <screen>VBoxManage setextradata "VM name" GUI/RestrictedRuntimeApplicationMenuActions OPTION[,OPTION...]</screen>
     2170
     2171      <para>where <computeroutput>OPTION</computeroutput> is one of the
     2172        following keywords:</para><glosslist>
     2173        <glossentry>
     2174          <glossterm><computeroutput>All</computeroutput></glossterm>
     2175          <glossdef>
     2176            <para>Don't show any menu item in this menu.</para>
     2177          </glossdef>
     2178        </glossentry>
     2179        <glossentry>
     2180          <glossterm><computeroutput>SettingsDialog</computeroutput></glossterm>
     2181          <glossdef>
     2182            <para>Don't show the <emphasis>Settings</emphasis> menu item in this menu.</para>
     2183          </glossdef>
     2184        </glossentry>
     2185        <glossentry>
     2186          <glossterm><computeroutput>TakeSnapshot</computeroutput></glossterm>
     2187          <glossdef>
     2188            <para>Don't show the <emphasis>Take Snapshot</emphasis> menu item in this menu.</para>
     2189          </glossdef>
     2190        </glossentry>
     2191        <glossentry>
     2192          <glossterm><computeroutput>TakeScreenshot</computeroutput></glossterm>
     2193          <glossdef>
     2194            <para>Don't show the <emphasis>Take Screenshot</emphasis> menu item in this menu.</para>
     2195          </glossdef>
     2196        </glossentry>
     2197        <glossentry>
     2198          <glossterm><computeroutput>InformationDialog</computeroutput></glossterm>
     2199          <glossdef>
     2200            <para>Don't show the <emphasis>Session Information</emphasis> menu item in this menu.</para>
     2201          </glossdef>
     2202        </glossentry>
     2203        <glossentry>
     2204          <glossterm><computeroutput>MouseIntegration</computeroutput></glossterm>
     2205          <glossdef>
     2206            <para>Don't show the <emphasis>Disable Mouse Integration</emphasis> menu item in this menu.</para>
     2207          </glossdef>
     2208        </glossentry>
     2209        <glossentry>
     2210          <glossterm><computeroutput>TypeCAD</computeroutput></glossterm>
     2211          <glossdef>
     2212            <para>Don't show the <emphasis>Insert Ctrl+Alt+Del</emphasis> menu item in this menu.</para>
     2213          </glossdef>
     2214        </glossentry>
     2215        <glossentry>
     2216          <glossterm><computeroutput>TypeCABS</computeroutput></glossterm>
     2217          <glossdef>
     2218            <para>Don't show the <emphasis>Insert Ctrl+Alt+Backspace</emphasis> menu item in
     2219              this menu (available on X11 hosts only).</para>
     2220          </glossdef>
     2221        </glossentry>
     2222        <glossentry>
     2223          <glossterm><computeroutput>Pause</computeroutput></glossterm>
     2224          <glossdef>
     2225            <para>Don't show the <emphasis>Pause</emphasis> menu item in this menu.</para>
     2226          </glossdef>
     2227        </glossentry>
     2228        <glossentry>
     2229          <glossterm><computeroutput>Reset</computeroutput></glossterm>
     2230          <glossdef>
     2231            <para>Don't show the <emphasis>Reset</emphasis> menu item in this menu.</para>
     2232          </glossdef>
     2233        </glossentry>
     2234        <glossentry>
     2235          <glossterm><computeroutput>SaveState</computeroutput></glossterm>
     2236          <glossdef>
     2237            <para>Don't show the <emphasis>Save the machine state</emphasis> menu item in this menu.</para>
     2238          </glossdef>
     2239        </glossentry>
     2240        <glossentry>
     2241          <glossterm><computeroutput>Shutdown</computeroutput></glossterm>
     2242          <glossdef>
     2243            <para>Don't show the <emphasis>ACPI Shutdown</emphasis> menu item in this menu.</para>
     2244          </glossdef>
     2245        </glossentry>
     2246        <glossentry>
     2247          <glossterm><computeroutput>PowerOff</computeroutput></glossterm>
     2248          <glossdef>
     2249            <para>Don't show the <emphasis>Power Off the machine</emphasis> menu item in this menu.</para>
     2250          </glossdef>
     2251        </glossentry>
     2252      </glosslist>
     2253
     2254      <para>This is a per-VM setting. Any combination of the above is allowed. To restore
     2255      the default behavior, use</para>
     2256      <screen>VBoxManage setextradata "VM name" GUI/RestrictedRuntimeApplicationMenuActions</screen>
     2257
     2258      <para>Use the following command to disable certain actions of the <emphasis>View</emphasis>
     2259        menu:</para>
     2260
     2261      <screen>VBoxManage setextradata "VM name" GUI/RestrictedRuntimeViewMenuActions OPTION[,OPTION...]</screen>
     2262
     2263      <para>where <computeroutput>OPTION</computeroutput> is one of the
     2264        following keywords:</para><glosslist>
     2265        <glossentry>
     2266          <glossterm><computeroutput>All</computeroutput></glossterm>
     2267          <glossdef>
     2268            <para>Don't show any menu item in this menu.</para>
     2269          </glossdef>
     2270        </glossentry>
     2271        <glossentry>
     2272          <glossterm><computeroutput>Fullscreen</computeroutput></glossterm>
     2273          <glossdef>
     2274            <para>Don't show the <emphasis>Switch to Fullscreen</emphasis> menu item in this menu.</para>
     2275          </glossdef>
     2276        </glossentry>
     2277        <glossentry>
     2278          <glossterm><computeroutput>Seamless</computeroutput></glossterm>
     2279          <glossdef>
     2280            <para>Don't show the <emphasis>Switch to Seamless Mode</emphasis> menu item in this menu.</para>
     2281          </glossdef>
     2282        </glossentry>
     2283        <glossentry>
     2284          <glossterm><computeroutput>Scale</computeroutput></glossterm>
     2285          <glossdef>
     2286            <para>Don't show the <emphasis>Switch to Scaled Mode</emphasis> menu item in this menu.</para>
     2287          </glossdef>
     2288        </glossentry>
     2289        <glossentry>
     2290          <glossterm><computeroutput>GuestAutoresize</computeroutput></glossterm>
     2291          <glossdef>
     2292            <para>Don't show the <emphasis>Auto-resize Guest Display</emphasis> menu item in this menu.</para>
     2293          </glossdef>
     2294        </glossentry>
     2295        <glossentry>
     2296          <glossterm><computeroutput>AdjustWindow</computeroutput></glossterm>
     2297          <glossdef>
     2298            <para>Don't show the <emphasis>Adjust Window Size</emphasis> menu item in this menu.</para>
     2299          </glossdef>
     2300        </glossentry>
     2301        <glossentry>
     2302          <glossterm><computeroutput>Multiscreen</computeroutput></glossterm>
     2303          <glossdef>
     2304            <para>Don't show the <emphasis>Multiscreen</emphasis> menu item in this menu (only visible in fullscreen/seamless mode).</para>
     2305          </glossdef>
     2306        </glossentry>
     2307      </glosslist>
     2308
     2309      <para>This is a per-VM setting. Any combination of the above is allowed. To restore
     2310      the default behavior, use</para>
     2311      <screen>VBoxManage setextradata "VM name" GUI/RestrictedRuntimeViewMenuActions</screen>
     2312
     2313      <para>Use the following command to disable certain actions of the <emphasis>View</emphasis>
     2314        menu:</para>
     2315
     2316      <screen>VBoxManage setextradata "VM name" GUI/RestrictedRuntimeDevicesMenuActions OPTION[,OPTION...]</screen>
     2317
     2318      <para>where <computeroutput>OPTION</computeroutput> is one of the
     2319        following keywords to disable actions in the <emphasis>Devices</emphasis> menu:</para><glosslist>
     2320        <glossentry>
     2321          <glossterm><computeroutput>All</computeroutput></glossterm>
     2322          <glossdef>
     2323            <para>Don't show any menu item in this menu.</para>
     2324          </glossdef>
     2325        </glossentry>
     2326        <glossentry>
     2327          <glossterm><computeroutput>OpticalDevices</computeroutput></glossterm>
     2328          <glossdef>
     2329            <para>Don't show the <emphasis>CD/DVD Devices</emphasis> menu item in this menu.</para>
     2330          </glossdef>
     2331        </glossentry>
     2332        <glossentry>
     2333          <glossterm><computeroutput>FloppyDevices</computeroutput></glossterm>
     2334          <glossdef>
     2335            <para>Don't show the <emphasis>FLoppy Devices</emphasis> menu item in this menu.</para>
     2336          </glossdef>
     2337        </glossentry>
     2338        <glossentry>
     2339          <glossterm><computeroutput>USBDevices</computeroutput></glossterm>
     2340          <glossdef>
     2341            <para>Don't show the <emphasis>USB Devices</emphasis> menu item in this menu.</para>
     2342          </glossdef>
     2343        </glossentry>
     2344        <glossentry>
     2345          <glossterm><computeroutput>SharedClipboard</computeroutput></glossterm>
     2346          <glossdef>
     2347            <para>Don't show the <emphasis>Shared Clipboard</emphasis> menu item in this menu.</para>
     2348          </glossdef>
     2349        </glossentry>
     2350        <glossentry>
     2351          <glossterm><computeroutput>DragAndDrop</computeroutput></glossterm>
     2352          <glossdef>
     2353            <para>Don't show the <emphasis>Drag'n'Drop</emphasis> menu item in this menu.</para>
     2354          </glossdef>
     2355        </glossentry>
     2356        <glossentry>
     2357          <glossterm><computeroutput>NetworkSettings</computeroutput></glossterm>
     2358          <glossdef>
     2359            <para>Don't show the <emphasis>Network Settings...</emphasis> menu item in this menu.</para>
     2360          </glossdef>
     2361        </glossentry>
     2362        <glossentry>
     2363          <glossterm><computeroutput>SharedFoldersSettings</computeroutput></glossterm>
     2364          <glossdef>
     2365            <para>Don't show the <emphasis>Shared Folders Settings...</emphasis> menu item in this menu.</para>
     2366          </glossdef>
     2367        </glossentry>
     2368        <glossentry>
     2369          <glossterm><computeroutput>VRDEServer</computeroutput></glossterm>
     2370          <glossdef>
     2371            <para>Don't show the <emphasis>Remove Display</emphasis> menu item in this menu.</para>
     2372          </glossdef>
     2373        </glossentry>
     2374        <glossentry>
     2375          <glossterm><computeroutput>InstallGuestTools</computeroutput></glossterm>
     2376          <glossdef>
     2377            <para>Don't show the <emphasis>Insert Guest Additions CD imnage...</emphasis> menu item in this menu.</para>
     2378          </glossdef>
     2379        </glossentry>
     2380      </glosslist>
     2381
     2382      <para>This is a per-VM setting. Any combination of the above is allowed. To restore
     2383      the default behavior, use</para>
     2384      <screen>VBoxManage setextradata "VM name" GUI/RestrictedRuntimeDevicesMenuActions</screen>
     2385
     2386      <para>Use the following command to disable certain actions of the <emphasis>View</emphasis>
     2387        menu:</para>
     2388
     2389      <screen>VBoxManage setextradata "VM name" GUI/RestrictedRuntimeDebuggerMenuActions OPTION[,OPTION...]</screen>
     2390
     2391      <para>where <computeroutput>OPTION</computeroutput> is one of the
     2392        following keywords to disable actions in the <emphasis>Debug</emphasis> menu (normally completely disabled):</para><glosslist>
     2393        <glossentry>
     2394          <glossterm><computeroutput>All</computeroutput></glossterm>
     2395          <glossdef>
     2396            <para>Don't show any menu item in this menu.</para>
     2397          </glossdef>
     2398        </glossentry>
     2399        <glossentry>
     2400          <glossterm><computeroutput>Statistics</computeroutput></glossterm>
     2401          <glossdef>
     2402            <para>Don't show the <emphasis>Statistics...</emphasis> menu item in this menu.</para>
     2403          </glossdef>
     2404        </glossentry>
     2405        <glossentry>
     2406          <glossterm><computeroutput>CommandLine</computeroutput></glossterm>
     2407          <glossdef>
     2408            <para>Don't show the <emphasis>Command Line...</emphasis> menu item in this menu.</para>
     2409          </glossdef>
     2410        </glossentry>
     2411        <glossentry>
     2412          <glossterm><computeroutput>Logging</computeroutput></glossterm>
     2413          <glossdef>
     2414            <para>Don't show the <emphasis>Logging...</emphasis> menu item in this menu.</para>
     2415          </glossdef>
     2416        </glossentry>
     2417        <glossentry>
     2418          <glossterm><computeroutput>LogDialog</computeroutput></glossterm>
     2419          <glossdef>
     2420            <para>Don't show the <emphasis>Show Log...</emphasis> menu item in this menu.</para>
     2421          </glossdef>
     2422        </glossentry>
     2423      </glosslist>
     2424
     2425      <para>This is a per-VM setting. Any combination of the above is allowed. To restore
     2426      the default behavior, use</para>
     2427      <screen>VBoxManage setextradata "VM name" GUI/RestrictedRuntimeDebuggerMenuActions</screen>
     2428
     2429      <para>Use the following command to disable certain actions of the <emphasis>View</emphasis>
     2430        menu:</para>
     2431
     2432      <screen>VBoxManage setextradata "VM name" GUI/RestrictedRuntimeHelpMenuActions OPTION[,OPTION...]</screen>
     2433
     2434      <para>where <computeroutput>OPTION</computeroutput> is one of the
     2435        following keywords to disable actions in the <emphasis>Help</emphasis> menu (normally completely disabled):</para><glosslist>
     2436        <glossentry>
     2437          <glossterm><computeroutput>All</computeroutput></glossterm>
     2438          <glossdef>
     2439            <para>Don't show any menu item in this menu.</para>
     2440          </glossdef>
     2441        </glossentry>
     2442        <glossentry>
     2443          <glossterm><computeroutput>Contents</computeroutput></glossterm>
     2444          <glossdef>
     2445            <para>Don't show the <emphasis>Contents...</emphasis> menu item in this menu.</para>
     2446          </glossdef>
     2447        </glossentry>
     2448        <glossentry>
     2449          <glossterm><computeroutput>WebSite</computeroutput></glossterm>
     2450          <glossdef>
     2451            <para>Don't show the <emphasis>VirtualBox Web Site...</emphasis> menu item in this menu.</para>
     2452          </glossdef>
     2453        </glossentry>
     2454        <glossentry>
     2455          <glossterm><computeroutput>ResetWarnings</computeroutput></glossterm>
     2456          <glossdef>
     2457            <para>Don't show the <emphasis>Reset All Warnings</emphasis> menu item in this menu.</para>
     2458          </glossdef>
     2459        </glossentry>
     2460        <glossentry>
     2461          <glossterm><computeroutput>NetworkAccessManager</computeroutput></glossterm>
     2462          <glossdef>
     2463            <para>Don't show the <emphasis>Network Operations Manager</emphasis> menu item in this menu.</para>
     2464          </glossdef>
     2465        </glossentry>
     2466        <glossentry>
     2467          <glossterm><computeroutput>About</computeroutput></glossterm>
     2468          <glossdef>
     2469            <para>Don't show the <emphasis>About</emphasis> menu item in this menu (only on non Mac OS X hosts).</para>
     2470          </glossdef>
     2471        </glossentry>
     2472        <glossentry>
     2473          <glossterm><computeroutput>Contents</computeroutput></glossterm>
     2474          <glossdef>
     2475            <para>Don't show the <emphasis>Contents...</emphasis> menu item in this menu.</para>
     2476          </glossdef>
     2477        </glossentry>
     2478        <glossentry>
     2479          <glossterm><computeroutput>Contents</computeroutput></glossterm>
     2480          <glossdef>
     2481            <para>Don't show the <emphasis>Contents...</emphasis> menu item in this menu.</para>
     2482          </glossdef>
     2483        </glossentry>
     2484      </glosslist>
     2485
     2486      <para>This is a per-VM setting. Any combination of the above is allowed. To restore
     2487      the default behavior, use</para>
     2488      <screen>VBoxManage setextradata "VM name" GUI/RestrictedRuntimeHelpMenuActions</screen>
    21402489
    21412490    </sect2>
Note: See TracChangeset for help on using the changeset viewer.

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