Changeset 43030 in vbox for trunk/src/VBox/Main/src-client
- Timestamp:
- Aug 28, 2012 11:41:55 AM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/src-client/GuestSessionImplTasks.cpp
r43002 r43030 900 900 901 901 ComObjPtr<Guest> pGuest(mSession->getParent()); 902 #if 0 902 903 /* 903 904 * Wait for the guest being ready within 30 seconds. … … 922 923 hr = setProgressErrorMsg(VBOX_E_NOT_SUPPORTED, 923 924 Utf8StrFmt(GuestSession::tr("Guest Additions were not ready within time, giving up"))); 924 925 eOSType osType; 925 #else 926 /* 927 * For use with the GUI we don't want to wait, just return so that the manual .ISO mounting 928 * can continue. 929 */ 930 AdditionsRunLevelType_T addsRunLevel; 931 if ( FAILED(hr = pGuest->COMGETTER(AdditionsRunLevel)(&addsRunLevel)) 932 || ( addsRunLevel != AdditionsRunLevelType_Userland 933 && addsRunLevel != AdditionsRunLevelType_Desktop)) 934 { 935 hr = setProgressErrorMsg(VBOX_E_NOT_SUPPORTED, 936 Utf8StrFmt(GuestSession::tr("Guest Additions not installed or ready, aborting automatic update"))); 937 rc = VERR_NOT_SUPPORTED; 938 } 939 #endif 940 926 941 if (RT_SUCCESS(rc)) 927 942 { … … 940 955 rc = VERR_NOT_SUPPORTED; 941 956 } 942 957 } 958 959 eOSType osType; 960 if (RT_SUCCESS(rc)) 961 { 943 962 /* 944 963 * Determine guest OS type and the required installer image. … … 1084 1103 * VBox certificates. */ 1085 1104 GuestProcessStartupInfo siCertUtilRem; 1086 siCertUtilRem.mName = "VirtualBox Certificate Utility ";1105 siCertUtilRem.mName = "VirtualBox Certificate Utility, removing old VirtualBox certificates"; 1087 1106 siCertUtilRem.mArguments.push_back(Utf8Str("remove-trusted-publisher")); 1088 1107 siCertUtilRem.mArguments.push_back(Utf8Str("--root")); /* Add root certificate as well. */ … … 1096 1115 * recent certificates just copied over. */ 1097 1116 GuestProcessStartupInfo siCertUtilAdd; 1098 siCertUtilAdd.mName = "VirtualBox Certificate Utility ";1117 siCertUtilAdd.mName = "VirtualBox Certificate Utility, installing VirtualBox certificates"; 1099 1118 siCertUtilAdd.mArguments.push_back(Utf8Str("add-trusted-publisher")); 1100 1119 siCertUtilAdd.mArguments.push_back(Utf8Str("--root")); /* Add root certificate as well. */
Note:
See TracChangeset
for help on using the changeset viewer.