Changeset 94078 in vbox for trunk/src/VBox/Main
- Timestamp:
- Mar 3, 2022 4:24:56 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-server/UnattendedImpl.cpp
r94075 r94078 3563 3563 HRESULT Unattended::getIsUnattendedInstallSupported(BOOL *aIsUnattendedInstallSupported) 3564 3564 { 3565 *aIsUnattendedInstallSupported = true; 3565 /* Unattended is disabled by default if we could not detect OS type. */ 3566 if (mStrDetectedOSTypeId.isEmpty() || mStrDetectedOSVersion.isEmpty()) 3567 { 3568 *aIsUnattendedInstallSupported = false; 3569 return S_OK; 3570 } 3566 3571 return S_OK; 3567 3572 }
Note:
See TracChangeset
for help on using the changeset viewer.