Changeset 18069 in vbox for trunk/src/VBox/Frontends
- Timestamp:
- Mar 18, 2009 3:12:23 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxManage/VBoxManageHelp.cpp
r18035 r18069 77 77 RTPrintf("VBoxManage list [--long|-l] vms|runningvms|ostypes|hostdvds|hostfloppies|\n" 78 78 #if (defined(RT_OS_WINDOWS) && defined(VBOX_WITH_NETFLT)) 79 " bridgedifs|hostonlyifs|dhcpservers|hostinfo| hddbackends|hdds|dvds|floppies|\n"79 " bridgedifs|hostonlyifs|dhcpservers|hostinfo|\n" 80 80 #else 81 " bridgedifs|hostinfo|dhcpservers| hddbackends|hdds|dvds|floppies|\n"82 #endif 83 81 " bridgedifs|hostinfo|dhcpservers|\n" 82 #endif 83 " hddbackends|hdds|dvds|floppies|\n" 84 84 " usbhost|usbfilters|systemproperties\n" 85 85 "\n"); … … 112 112 " [-basefolder <path> | -settingsfile <path>]\n" 113 113 " [-uuid <uuid>]\n" 114 "\n");115 }116 117 if (u64Cmd & USAGE_IMPORTAPPLIANCE)118 {119 RTPrintf("VBoxManage import <ovf>\n"120 "\n"); // @todo121 }122 123 if (u64Cmd & USAGE_EXPORTAPPLIANCE)124 {125 RTPrintf("VBoxManage export <machines> [--output|-o] <ovf>\n"126 114 "\n"); 127 115 } … … 245 233 } 246 234 235 if (u64Cmd & USAGE_IMPORTAPPLIANCE) 236 { 237 RTPrintf("VBoxManage import <ovf> [--dry-run|-n] [more options]\n" 238 " (run with -n to have options displayed for a particular OVF)\n\n"); 239 } 240 241 if (u64Cmd & USAGE_EXPORTAPPLIANCE) 242 { 243 RTPrintf("VBoxManage export <machines> [--output|-o] <ovf>\n" 244 "\n"); 245 } 246 247 247 if (u64Cmd & USAGE_STARTVM) 248 248 { … … 473 473 if (u64Cmd & USAGE_METRICS) 474 474 { 475 RTPrintf("VBoxManage metrics list [*|host|<vmname> [<metric_list>]] (comma-separated)\n\n" 475 RTPrintf("VBoxManage metrics list [*|host|<vmname> [<metric_list>]] \n" 476 " (comma-separated)\n\n" 476 477 "VBoxManage metrics setup\n" 477 478 " [-period <seconds>]\n" … … 492 493 { 493 494 RTPrintf("VBoxManage hostonlyif ipconfig <name> \n" 494 " 495 " -ip<ipv4> [-netmask<ipv4> (default is255.255.255.0)]| \n"496 " -ipv6<ipv6> [-netmasklengthv6<length> (default is64)]]\n"495 " [-dhcp| \n" 496 " -ip<ipv4> [-netmask<ipv4> (deflt: 255.255.255.0)]| \n" 497 " -ipv6<ipv6> [-netmasklengthv6<length> (deflt: 64)]]\n" 497 498 # if defined(RT_OS_WINDOWS) 498 499 " create |\n" … … 506 507 if (u64Cmd & USAGE_DHCPSERVER) 507 508 { 508 RTPrintf("VBoxManage dhcpserver [add | modify] [-netname <network_name> | -ifname <hostonly_if_name>]\n" 509 RTPrintf("VBoxManage dhcpserver add|modify -netname <network_name> |\n" 510 " -ifname <hostonly_if_name>\n" 509 511 " [-ip <ip_address>\n" 510 512 " -netmask <network_mask>\n" … … 512 514 " -upperip <upper_ip>]\n" 513 515 " [-enable | -disable]\n" 514 " remove [-netname <network_name> | -ifname <hostonly_if_name>]\n" 516 "VBoxManage dhcpserver remove -netname <network_name> |\n" 517 " -ifname <hostonly_if_name>\n" 515 518 "\n"); 516 519 }
Note:
See TracChangeset
for help on using the changeset viewer.