Ermittelt das Handle des Windows Desktop Fensters
#include <WinAPISysWin.au3>
_WinAPI_GetDesktopWindow ( )
Suche nach GetDesktopWindow in der MSDN Bibliothek.
#include <MsgBoxConstants.au3>
#include <WinAPISysWin.au3>
Example()
Func Example()
Local $hWin = _WinAPI_GetDesktopWindow()
MsgBox($MB_SYSTEMMODAL, "", WinGetTitle($hWin))
MsgBox($MB_SYSTEMMODAL, "", $hWin)
EndFunc ;==>Example