-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexample_files.ini
More file actions
46 lines (43 loc) · 1.09 KB
/
example_files.ini
File metadata and controls
46 lines (43 loc) · 1.09 KB
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
# 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 is (SAVE_INTERVAL * SLEEP_TIME)
# Save int is used to prevent continuous read/write and as a safeguard
[MISC]
FILES_LOCATION = C:\
# LOG_BACKUP_0 = C:\
# LOG_BACKUP_1 = D:\
# LOG_BACKUP_2 = E:\
FILE_APPEND = .txt
SLEEP_TIME = 5
SAVE_INTERVAL = 6
LICENSE_READ = 0
# Incorporates strings
# Strings begin at array 0
[FILES]
0 = Shutdown
1 = Reboot
2 = Chrome
3 = Sleep
4 = Logout
# 5 = add option here
# 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 = add command here
# 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 = add open shell here