Changeset 96620 in vbox
- Timestamp:
- Sep 6, 2022 9:13:52 PM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxManage/VBoxManageMisc.cpp
r96407 r96620 2040 2040 CHECK_ERROR2_RET(hrc, ptrUnattended, COMGETTER(DetectedImageIndices)(ComSafeArrayAsOutParam(aImageIndices)), RTEXITCODE_FAILURE); 2041 2041 Assert(aImageNames.size() == aImageIndices.size()); 2042 BOOL fInstallSupported = FALSE; 2043 CHECK_ERROR2_RET(hrc, ptrUnattended, COMGETTER(IsUnattendedInstallSupported)(&fInstallSupported), RTEXITCODE_FAILURE); 2042 2044 2043 2045 if (fMachineReadable) … … 2053 2055 outputMachineReadableStringWithFmtName(&bstrName, false, "ImageIndex%u", aImageIndices[i]); 2054 2056 } 2057 outputMachineReadableBool("IsInstallSupported", &fInstallSupported); 2055 2058 } 2056 2059 else … … 2069 2072 for (size_t i = 0; i < aImageNames.size(); i++) 2070 2073 RTPrintf(" Image #%-3u = %ls\n", aImageIndices[i], aImageNames[i]); 2074 if (fInstallSupported) 2075 RTPrintf(Misc::tr(" Unattended installation supported = yes\n")); 2076 else 2077 RTPrintf(Misc::tr(" Unattended installation supported = no\n")); 2071 2078 } 2072 2079
Note:
See TracChangeset
for help on using the changeset viewer.