-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTopdesk_hotkeys.au3
45 lines (37 loc) · 1.62 KB
/
Topdesk_hotkeys.au3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#Region ;**** Directives created by AutoIt3Wrapper_GUI ****
#AutoIt3Wrapper_Version=Beta
#AutoIt3Wrapper_Icon=..\..\ico\Calculator.ico
#AutoIt3Wrapper_Compression=3
#AutoIt3Wrapper_Res_Fileversion=0.0.2.0
#AutoIt3Wrapper_Run_AU3Check=n
#AutoIt3Wrapper_Run_Au3Stripper=y
#EndRegion ;**** Directives created by AutoIt3Wrapper_GUI ****
#cs ----------------------------------------------------------------------------
AutoIt Version: v3.3.8.1
Author: Finn van Damme
Script Function: Sneltoetsen voor Support, voor het starten van httprequests en gebruikers taken.
#ce ----------------------------------------------------------------------------
;~ ------------------------------------------------------------------
;~ Includes
;~ ------------------------------------------------------------------
#include "HTTP_requests.au3"
;~ ------------------------------------------------------------------
;~ Variables
;~ ------------------------------------------------------------------
;~ ------------------------------------------------------------------
;~ Script
;~ ------------------------------------------------------------------
;~ Hotkey
;~ ------------------------------------------------------------------
HotKeySet("{F3}", "preIncident") ; Open GUI.
;~ /-----------------------------------------------------------------
;~ Loop
;~ ------------------------------------------------------------------
While 1
Sleep(1000)
If FileExists(@ScriptDir & "\Kill.txt") Then
MsgBox(0, "AutoKilled", "Update tijd!! De administrator heeft Hotkeys gesloten.", 3)
Run("Check.exe")
Exit 0
EndIf
WEnd