VirtualBox

儲存庫 vbox 的更動 30907


忽略:
時間撮記:
2010-7-19 上午11:32:16 (14 年 以前)
作者:
vboxsync
訊息:

Pass RDP credentials to the guest only if there are no logged in users (xTracker 4514)

檔案:
修改 1 筆資料

圖例:

未更動
新增
刪除
  • trunk/src/VBox/Main/ConsoleImpl.cpp

    r30899 r30907  
    887887    if (SUCCEEDED(hrc) && value == "1")
    888888    {
    889         fProvideGuestCredentials = TRUE;
     889        /* Provide credentials only if there are no logged in users. */
     890        Bstr noLoggedInUsersValue;
     891        ULONG64 ul64Timestamp = 0;
     892        Bstr flags;
     893
     894        hrc = getGuestProperty(Bstr("/VirtualBox/GuestInfo/OS/NoLoggedInUsers"),
     895                               noLoggedInUsersValue.asOutParam(), &ul64Timestamp, flags.asOutParam());
     896
     897        if (SUCCEEDED(hrc) && noLoggedInUsersValue != Bstr("false"))
     898        {
     899            fProvideGuestCredentials = TRUE;
     900        }
    890901    }
    891902
注意: 瀏覽 TracChangeset 來幫助您使用更動檢視器

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette