-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfiles.ini
49 lines (46 loc) · 1.18 KB
/
files.ini
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
46
47
48
49
# Incorporates locations
# Location where IFTTT commanding files would be placed
# Backups begin at array 0. Add as many as you please
# File append option. My system removes the txt from .txt
# Sleep time is used for breaks between scans
# Save interval in seconds is (SAVE_INTERVAL * SLEEP_TIME)
# Save int is used to prevent continuous read/write
[MISC]
FILES_LOCATION = H:\My Drive\Google Home\
LOG_BACKUP_0 = H:\My Drive\Google Home\IFTTTLog.txt
LOG_BACKUP_1 = G:\Logs\IFTTTLog.txt
LOG_BACKUP_2 = G:\Program Files\Git\IFTTTLog.txt
FILE_APPEND = .
SLEEP_TIME = 5
SAVE_INTERVAL = 6
LICENSE_READ = 1
# Incorporates strings
# Strings begin at array 0
[FILES]
0 = Shutdown
1 = Reboot
2 = Chrome
3 = Sleep
4 = Logout
5 = taskmgr
6 = forkbomb
# incorporates strings to commands
# Commands begin at array 0
# Make sure to represent COMMAND numbers with FILE numbers
[COMMANDS]
0 = shutdown -s /t 15
1 = shutdown -r /t 15
2 = taskkill /im chrome.exe /f
3 = RUNDLL32.EXE powrprof.dll,SetSuspendState 0,1,0
4 = shutdown /l
5 = start taskmgr
6 = start G:\fb.bat
# Checks for whether shell is necessary or not. To open programs, set to True
[SHELL]
0 = False
1 = False
2 = False
3 = False
4 = False
5 = True
6 = True