-
Notifications
You must be signed in to change notification settings - Fork 4
/
WinStartupManager.ring
398 lines (371 loc) · 11.7 KB
/
WinStartupManager.ring
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
/*
App Name : Win Startup Manager
Description : This application let you control Windows startup programs entries by Adding, Editing, or Deleting them
Auther : Majdi Sobain <Majdi.Sobain@Gmail.com>
(c) 2017
*/
Load "guilib.ring"
Load "stdlib.ring"
# Load Libraries
Load "libs\WinCReg.ring"
Load "libs\WINAPI.ring"
# Load windows
Load "forms\winstartupmanagerController.ring"
Load "forms\addeditentryController.ring"
import System.GUI
If rwaIsRunAsAdmin() = False
rwaElevate(exefolder() + "ringw.exe", filename())
Bye
Ok
# Public variables
ID = 1
WinObj = NULL
SubWinObj = NULL
SubWinOpened = 0
ProgramItems = NULL
Func Main
ProgramItems = RetrieveAppEntries()
# ProgramItems = [ [ID, ProgramName, ProgramPath, Activation, HKEY, Wow64tree] ]
new App {
StyleFusion()
open_window(:winstartupmanagerController)
WinObj = Last_Window() {
SortProItems(2)
AddItemsToTable(ProgramItems)
LoadWinAction()
}
exec()
}
Func RetrieveAppEntries
ProgramItems = [/* [ID, ProgramName, ProgramPath, Activation, HKEY, Wow64tree] */]
New RCRegistry {
Try
OpenKey([HKEY_CURRENT_USER, "Software\Microsoft\Windows\CurrentVersion\Run", CREG_READONLY])
rItems = GetEntries()
If len(rItems)
For i = 1 to len(rItems)
If rItems[i] = "" Loop /*Ignore Default entry*/ Ok
Add(ProgramItems, [ID, rItems[i], Self[rItems[i]].GetValue(), 1, HKCU, False])
ID++
Next
Ok
Catch see ccatcherror Done
Try
OpenKey([HKEY_Local_Machine, "Software\Microsoft\Windows\CurrentVersion\Run", CREG_READONLY])
rItems = GetEntries()
If len(rItems)
For i = 1 to len(rItems)
If rItems[i] = "" Loop /*Ignore Default entry*/ Ok
Add(ProgramItems, [ID, rItems[i], Self[rItems[i]].GetValue(), 1, HKLM, False])
ID++
Next
Ok
Catch see ccatcherror Done
Try
if rwaIsWow64Process() = 1
OpenKey([HKEY_Local_Machine, "Software\Microsoft\Windows\CurrentVersion\Run", CREG_READONLY, True])
rItems = GetEntries()
If len(rItems)
For i = 1 to len(rItems)
If rItems[i] = "" Loop /*Ignore Default entry*/ Ok
Add(ProgramItems, [ID, rItems[i], Self[rItems[i]].GetValue(), 1, HKLM, True])
ID++
Next
Ok
Ok
Catch Done
Try
OpenKey([HKEY_Current_User, "Software\WinStartupManager\Disabled\" + HKCU + "\" + False])
rItems = GetEntries()
If len(rItems)
For i = 1 to len(rItems)
If rItems[i] = "" Loop /*Ignore Default entry*/ Ok
Add(ProgramItems, [ID, rItems[i], Self[rItems[i]].GetValue(), 0, HKCU, False])
ID++
Next
Ok
Catch see ccatcherror Done
Try
OpenKey([HKEY_Current_User, "Software\WinStartupManager\Disabled\" + HKLM + "\" + False])
rItems = GetEntries()
If len(rItems)
For i = 1 to len(rItems)
If rItems[i] = "" Loop /*Ignore Default entry*/ Ok
Add(ProgramItems, [ID, rItems[i], Self[rItems[i]].GetValue(), 0, HKLM, False])
ID++
Next
Ok
Catch see ccatcherror Done
Try
OpenKey([HKEY_Current_User, "Software\WinStartupManager\Disabled\" + HKLM + "\" + True])
rItems = GetEntries()
If len(rItems)
For i = 1 to len(rItems)
If rItems[i] = "" Loop /*Ignore Default entry*/ Ok
Add(ProgramItems, [ID, rItems[i], Self[rItems[i]].GetValue(), 0, HKLM, True])
ID++
Next
Ok
Catch see ccatcherror Done
CloseKey()
}
for pi in ProgramItems
if len(pi[3]) and trim(pi[3])[1] != '"'
pi[3] = '"' + left(pi[3], substr(Lower(pi[3]), ".exe") + 3) + '"' + right(pi[3], len(pi[3]) - substr(Lower(pi[3]), ".exe") -3)
ok
next
Return ProgramItems
Func DisableProgram ID
ItemInd = Find(ProgramItems, ID, 1)
New RCRegistry {
Try
# Delete program entry from "Run" key
OpenKey([ProgramItems[ItemInd][5], "Software\Microsoft\Windows\CurrentVersion\Run", CREG_CREATE, ProgramItems[ItemInd][6]])
Self[ProgramItems[ItemInd][2]].Delete()
# Create program entry in "Disabled" key
OpenKey([HKEY_Current_User, "Software\WinStartupManager\Disabled\" + String(ProgramItems[ItemInd][5]) + "\" + String(ProgramItems[ItemInd][6])])
Self[ProgramItems[ItemInd][2]].SetValue(ProgramItems[ItemInd][3])
# Change activation status
ProgramItems[ItemInd][4] = 0
Catch
#MsgBox
new qMessageBox(WinObj.oView.win) {
Warning(self, "Error", cCatchError, QMessageBox_Ok, QMessageBox_NoButton)
}
CloseKey()
Return False
Done
CloseKey()
}
Return True
Func EnableProgram ID
ItemInd = Find(ProgramItems, ID, 1)
New RCRegistry {
Try
# Delete program entry from "Disabled" key
OpenKey([HKEY_Current_User, "Software\WinStartupManager\Disabled\" + String(ProgramItems[ItemInd][5]) + "\" + String(ProgramItems[ItemInd][6])])
Self[ProgramItems[ItemInd][2]].Delete()
# Create program entry in "Run" key
OpenKey([ProgramItems[ItemInd][5], "Software\Microsoft\Windows\CurrentVersion\Run", CREG_CREATE, ProgramItems[ItemInd][6]])
Self[ProgramItems[ItemInd][2]].SetValue(ProgramItems[ItemInd][3])
# Change activation status
ProgramItems[ItemInd][4] = 1
Catch
#MsgBox
new qMessageBox(WinObj.oView.win) {
Warning(self, "Error", cCatchError, QMessageBox_Ok, QMessageBox_NoButton)
}
CloseKey()
Return False
Done
CloseKey()
}
Return True
Func EditProgram ID, aname, apath, ausers
ItemInd = Find(ProgramItems, ID, 1)
if ProgramItems[ItemInd][5] = ausers
# Update item in ProgramItems AND Registry
New RCRegistry {
Try
# Edit program entry in "Run" key or "Disabled" key
if ProgramItems[ItemInd][4]
OpenKey([ProgramItems[ItemInd][5], "Software\Microsoft\Windows\CurrentVersion\Run", CREG_READONLY, ProgramItems[ItemInd][6]])
else
OpenKey([HKEY_Current_User, "Software\WinStartupManager\Disabled\" + String(ProgramItems[ItemInd][5]) + "\" + String(ProgramItems[ItemInd][6])])
ok
if ProgramItems[ItemInd][2] != aname
Self[ProgramItems[ItemInd][2]].Delete()
ok
# Update item in ProgramItems
ProgramItems[ItemInd][2] = aname
ProgramItems[ItemInd][3] = apath
# Update item in Registry
Self[ProgramItems[ItemInd][2]].SetValue(ProgramItems[ItemInd][3])
Catch
#MsgBox
new qMessageBox(WinObj.oView.win) {
Warning(self, "Error", cCatchError, QMessageBox_Ok, QMessageBox_NoButton)
}
CloseKey()
Return False
Done
CloseKey()
}
else # if the place of entry save changed Note: if program deactive place will not change
# Delete previous entry
New RCRegistry {
Try
# Edit program entry in "Run" key
OpenKey([ProgramItems[ItemInd][5], "Software\Microsoft\Windows\CurrentVersion\Run", CREG_READONLY, ProgramItems[ItemInd][6]])
Self[ProgramItems[ItemInd][2]].Delete()
Catch
#MsgBox
new qMessageBox(WinObj.oView.win) {
Warning(self, "Error", cCatchError, QMessageBox_Ok, QMessageBox_NoButton)
}
CloseKey()
Return False
Done
CloseKey()
}
if ProgramItems[ItemInd][5] = HKCU
New RCRegistry {
OpenKey([HKEY_Current_User, "Software\WinStartupManager\UserConversion"])
if Self[ProgramItems[ItemInd][2]].Exists()
if Self[ProgramItems[ItemInd][2]].GetValue() = 1
Self[ProgramItems[ItemInd][2]].Delete()
ProgramItems[ItemInd][6] = 1
ok
ok
}
else
if ProgramItems[ItemInd][6]
New RCRegistry {
OpenKey([HKEY_Current_User, "Software\WinStartupManager\UserConversion"])
Self[ProgramItems[ItemInd][2]].SetValue(1)
}
ok
ok
# Update item in ProgramItems
ProgramItems[ItemInd][2] = aname
ProgramItems[ItemInd][3] = apath
ProgramItems[ItemInd][5] = ausers
# Create new entry
New RCRegistry {
Try
# Edit program entry in "Run" key
OpenKey([ProgramItems[ItemInd][5], "Software\Microsoft\Windows\CurrentVersion\Run", CREG_CREATE, ProgramItems[ItemInd][6]])
Self[ProgramItems[ItemInd][2]].SetValue(ProgramItems[ItemInd][3])
Catch
#MsgBox
new qMessageBox(WinObj.oView.win) {
Warning(self, "Error", cCatchError, QMessageBox_Ok, QMessageBox_NoButton)
}
CloseKey()
Return False
Done
CloseKey()
}
ok
Return True
Func ExportEntries
outPut = "Windows Registry Editor Version 5.00" + NL + NL
for i = 1 to len(ProgramItems)
if not ProgramItems[i][4] # disabled
outPut = outPut + "[HKEY_CURRENT_USER\Software\WinStartupManager\Disabled\" + String(ProgramItems[i][5]) + "\" + String(ProgramItems[i][6]) + "]" + NL
outPut = outPut + '"' + PrepareToExport(ProgramItems[i][2]) + '"="' + PrepareToExport(ProgramItems[i][3]) + '"' + NL + NL
else
if ProgramItems[i][5] = HKCU
outPut = outPut + "[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Run]" + NL
outPut = outPut + '"' + PrepareToExport(ProgramItems[i][2]) + '"="' + PrepareToExport(ProgramItems[i][3]) + '"' + NL + NL
else
if ProgramItems[i][6]
outPut = outPut + "[HKEY_LOCAL_MACHINE\Software\WOW6432Node\Microsoft\Windows\CurrentVersion\Run]" + NL
outPut = outPut + '"' + PrepareToExport(ProgramItems[i][2]) + '"="' + PrepareToExport(ProgramItems[i][3]) + '"' + NL + NL
else
outPut = outPut + "[HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Run]" + NL
outPut = outPut + '"' + PrepareToExport(ProgramItems[i][2]) + '"="' + PrepareToExport(ProgramItems[i][3]) + '"' + NL + NL
ok
ok
ok
next
cName = ""
new qFileDialog(NULL) {
cName = getsavefilename(NULL, "Save to file","c:\","Registry files(*.reg)")
}
if cName = ""
return
ok
Write(cName, outPut)
new qMessageBox(WinObj.oView.win) {
information(self, "Completed Successfully", "Export process completed successfully", QMessageBox_Ok, QMessageBox_NoButton)
}
Func PrepareToExport str
str = substr(substr(str, "\", "\\"), '"', '\"')
Return str
Func ImportEntries
itemsList = []
iID = ID
new qFileDialog(NULL) {
cName = ""
cName = getopenfilename(NULL, "Open file","c:\","Registry files(*.reg)")
}
if cName = ""
return 0
ok
inPutLst = Read(cName)
if not substr(inPutLst, "\Run]") AND not substr(inPutLst, "WinStartupManager")
new qMessageBox(WinObj.oView.win) {
Warning(self, "Invalid Backup", "You have seleceted an invalid backup.", QMessageBox_OK, QMessageBox_NoButton)
}
return 0
ok
inPutLst = str2list(inPutLst)
for i = 1 to len(inPutLst)
if len(inPutLst[i]) = 0
loop
ok
if inPutLst[i][1] = "["
iName = substr(inPutLst[i+1], 2, substr(inPutLst[i+1], "=") -3)
iName = substr(iName, '\"', '"')
iPath = substr(inPutLst[i+1], substr(inPutLst[i+1], "=") +2, len(inPutLst[i+1]) - substr(inPutLst[i+1], "=") -2)
iPath = substr(substr(iPath, '\"', '"'), '\\', "\")
if substr(inPutLst[i], "WinStartupManager")
activ = 0
if substr(inPutLst[i], "2")
hKey = 2
else
hKey = 3
ok
if substr(inPutLst[i], "1")
Redi = 1
else
Redi = 0
ok
else
activ = 1
if substr(inPutLst[i], 2, substr(inPutLst[i], "\") -2) = "HKEY_CURRENT_USER"
hKey = 2
else
hKey = 3
ok
if substr(inPutLst[i], "WOW6432Node")
Redi = 1
else
Redi = 0
ok
ok
add(itemsList, [iID, iName, iPath, activ, hKey, Redi])
iID = iID + 1
i = i + 2
ok
next
ID = iID
Return itemsList
Func SaveItmToReg itID
ind = find(ProgramItems, itID, 1)
if ProgramItems[ind][4] # active
EnableProgram(itID)
else
DisableProgram(itID)
ok
Func DeleteProgram pID
if pID = 0
return
ok
itemInd = Find(ProgramItems, pID, 1)
New RCRegistry {
if ProgramItems[itemInd][4]
OpenKey([ProgramItems[itemInd][5], "Software\Microsoft\Windows\CurrentVersion\Run", CREG_CREATE, ProgramItems[itemInd][6]])
else
OpenKey([HKEY_Current_User, "Software\WinStartupManager\Disabled\" + String(ProgramItems[ItemInd][5]) + "\" + String(ProgramItems[ItemInd][6])])
ok
Self[ProgramItems[itemInd][2]].Delete()
CloseKey()
}
ProgramItems[itemInd] = [0, "", "", 0, 0, 0] # reset but not deleted to reserve list length
Func SysCmd cmd
System(cmd + " > syscmd.dat")
cStr = read("syscmd.dat")
System("del syscmd.dat")
return cStr