Changeset 49103 in vbox for trunk/src/VBox/Frontends
- Timestamp:
- Oct 15, 2013 6:20:39 AM (11 years ago)
- Location:
- trunk/src/VBox/Frontends/VBoxManage
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxManage/VBoxManageAppliance.cpp
r49038 r49103 796 796 { "--ovf20", '2', RTGETOPT_REQ_NOTHING }, 797 797 { "--manifest", 'm', RTGETOPT_REQ_NOTHING }, 798 { "--iso", 'I', RTGETOPT_REQ_NOTHING }, 798 799 { "--vsys", 's', RTGETOPT_REQ_UINT32 }, 799 800 { "--product", 'p', RTGETOPT_REQ_STRING }, … … 814 815 Utf8Str strOvfFormat("ovf-1.0"); // the default export version 815 816 bool fManifest = false; // the default 817 bool fExportISOImages = false; // the default 816 818 std::list< ComPtr<IMachine> > llMachines; 817 819 … … 851 853 case '2': // --ovf20 852 854 strOvfFormat = "ovf-2.0"; 855 break; 856 857 case 'I': // --iso 858 fExportISOImages = true; 853 859 break; 854 860 … … 1055 1061 options.push_back(ExportOptions_CreateManifest); 1056 1062 1063 if (fExportISOImages) 1064 options.push_back(ExportOptions_ExportDVDImages); 1065 1057 1066 ComPtr<IProgress> progress; 1058 1067 CHECK_ERROR_BREAK(pAppliance, Write(Bstr(strOvfFormat).raw(), -
trunk/src/VBox/Frontends/VBoxManage/VBoxManageHelp.cpp
r49086 r49103 410 410 " [--legacy09|--ovf09|--ovf10|--ovf20]\n" 411 411 " [--manifest]\n" 412 " [--iso]\n" 412 413 " [--vsys <number of virtual system>]\n" 413 414 " [--product <product name>]\n"
Note:
See TracChangeset
for help on using the changeset viewer.