2
我通過RDP在一天之內關閉了連接到我的PC(Windows XP Pro,它運行24/7)。 我有一個後臺進程,應該在RDP連接時做一些事情,但我無法想出一個方法來檢測RDP連接的建立。檢測RDP連接
沒有新的進程創建,WTSQuerySessionInformation沒有幫助(我連接到相同的永久Windows會話)。
任何想法?
我通過RDP在一天之內關閉了連接到我的PC(Windows XP Pro,它運行24/7)。 我有一個後臺進程,應該在RDP連接時做一些事情,但我無法想出一個方法來檢測RDP連接的建立。檢測RDP連接
沒有新的進程創建,WTSQuerySessionInformation沒有幫助(我連接到相同的永久Windows會話)。
任何想法?
答案是wtsapi32.dll中的WTSRegisterSessionNotification()。 這標誌着您接收WM_WTSSESSION_CHANGE通知,其WParam可能是WTS_REMOTE_CONNECT,WTS_REMOTE_DISCONNECT。這就是它。
這是最簡單的AutoIt執行:
#include <GUIConstantsEx.au3>
#include <Date.au3>
#include <WindowsConstants.au3>
Global Const $hWTSAPI32 = DllOpen("wtsapi32.dll")
Global $i = 0, $tTime
_Main()
Func _Main()
Local $hGUI
; Create GUI
$hGUI = GUICreate("Session change detection", 600, 400)
;~ GUISetState() ; show the window
DllCall($hWTSAPI32, "int", "WTSRegisterSessionNotification", "hwnd", $hGUI, "dword", 1) ; NOTIFY_FOR_ALL_SESSIONS
If @error Then
MsgBox(0,"", "Error calling WTSRegisterSessionNotification()")
Exit
EndIf
GUIRegisterMsg(0x2B1, "WTSSESSION_CHANGE") ; WM_WTSSESSION_CHANGE <=====================
; Loop until user exits
Do
Until GUIGetMsg() = $GUI_EVENT_CLOSE
EndFunc ;==>_Main
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
Func WTSSESSION_CHANGE($hWndGUI, $MsgID, $WParam, $LParam)
; WTS_REMOTE_CONNECT = 0x3, WTS_REMOTE_DISCONNECT = 0x4
; WTS_SESSION_UNLOCK = 0x8, WTS_SESSION_LOGON = 0x5
If $WParam = 3 Then
$tTime = _Date_Time_GetSystemTime()
MsgBox(0, "Caught a notification", "Remote session connected at " & _Date_Time_SystemTimeToDateTimeStr($tTime))
Exit
EndIf
EndFunc