Changeset 66563 in vbox
- Timestamp:
- Apr 13, 2017 4:08:23 PM (7 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
-
Config.kmk (modified) (1 diff)
-
src/VBox/Main/src-client/VirtualBoxClientImpl.cpp (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Config.kmk
r66561 r66563 923 923 endif 924 924 # disabled by default 925 VBOX_WITH_SDS = 925 VBOX_WITH_SDS = 1 926 926 927 927 -
trunk/src/VBox/Main/src-client/VirtualBoxClientImpl.cpp
r66512 r66563 65 65 ///////////////////////////////////////////////////////////////////////////// 66 66 67 #if def VBOX_WITH_SDS67 #if defined(RT_OS_WINDOWS) && defined(VBOX_WITH_SDS) 68 68 69 69 HRESULT CreateVirtualBoxThroughSDS(ComPtr<IVirtualBox> &aVirtualBox) … … 286 286 { 287 287 288 #if def VBOX_WITH_SDS288 #if defined(RT_OS_WINDOWS) && defined(VBOX_WITH_SDS) 289 289 // setup COM Security to enable impersonation 290 290 // This works for console Virtual Box clients, GUI has own security settings … … 327 327 mData.m_SemEvWatcher = NIL_RTSEMEVENT; 328 328 329 #ifdef VBOX_WITH_SDS 330 // TODO: AM create virtual box through SDS 329 #if defined(RT_OS_WINDOWS) && defined(VBOX_WITH_SDS) 331 330 rc = CreateVirtualBoxThroughSDS(mData.m_pVirtualBox); 332 331 #else … … 441 440 if (FAILED(hrc)) 442 441 { 443 return setError(hrcCaller, tr("Failed to get information about VBoxSDS using WMI:: %Rhrc & %Rhrc"), hrcCaller, hrc); 442 LogRelFunc(("Warning: Failed to get information about VBoxSDS using WMI:: %Rhrc & %Rhrc"), hrcCaller, hrc)); 443 bIsVBoxSDSDisabled = false; 444 //return setError(hrcCaller, tr("Failed to get information about VBoxSDS using WMI:: %Rhrc & %Rhrc"), hrcCaller, hrc); 444 445 } 445 446 if (bIsVBoxSDSDisabled) … … 628 629 LogFlowThisFunc(("\n")); 629 630 630 #if def VBOX_WITH_SDS631 #if defined(RT_OS_WINDOWS) && defined(VBOX_WITH_SDS) 631 632 ReleaseVirtualBoxThroughSDS(); 632 633 #endif
Note:
See TracChangeset
for help on using the changeset viewer.

