-
Notifications
You must be signed in to change notification settings - Fork 2
/
w_main.srw
374 lines (337 loc) · 8.35 KB
/
w_main.srw
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
HA$PBExportHeader$w_main.srw
forward
global type w_main from window
end type
type st_isanadmin from statictext within w_main
end type
type st_4 from statictext within w_main
end type
type st_5 from statictext within w_main
end type
type st_integritylevel from statictext within w_main
end type
type st_isprocesselevated from statictext within w_main
end type
type st_2 from statictext within w_main
end type
type st_3 from statictext within w_main
end type
type st_isrunasadmin from statictext within w_main
end type
type st_userinadmingroup from statictext within w_main
end type
type st_1 from statictext within w_main
end type
type p_shield from picture within w_main
end type
type cb_1 from commandbutton within w_main
end type
type luid from structure within w_main
end type
type token_privileges from structure within w_main
end type
type luid_and_attributes from structure within w_main
end type
end forward
type luid from structure
unsignedlong lowpart
unsignedlong highpart
end type
type token_privileges from structure
long privilegecount
luid_and_attributes privileges
end type
type luid_and_attributes from structure
luid pluid
long attributes
end type
global type w_main from window
integer width = 1083
integer height = 956
boolean titlebar = true
string title = "Self-Elevating"
boolean controlmenu = true
boolean minbox = true
boolean maxbox = true
boolean resizable = true
long backcolor = 67108864
string icon = "AppIcon!"
boolean center = true
st_isanadmin st_isanadmin
st_4 st_4
st_5 st_5
st_integritylevel st_integritylevel
st_isprocesselevated st_isprocesselevated
st_2 st_2
st_3 st_3
st_isrunasadmin st_isrunasadmin
st_userinadmingroup st_userinadmingroup
st_1 st_1
p_shield p_shield
cb_1 cb_1
end type
global w_main w_main
type prototypes
end prototypes
type variables
protected:
n_cst_platform_privileges inv_privileges
end variables
on w_main.create
this.st_isanadmin=create st_isanadmin
this.st_4=create st_4
this.st_5=create st_5
this.st_integritylevel=create st_integritylevel
this.st_isprocesselevated=create st_isprocesselevated
this.st_2=create st_2
this.st_3=create st_3
this.st_isrunasadmin=create st_isrunasadmin
this.st_userinadmingroup=create st_userinadmingroup
this.st_1=create st_1
this.p_shield=create p_shield
this.cb_1=create cb_1
this.Control[]={this.st_isanadmin,&
this.st_4,&
this.st_5,&
this.st_integritylevel,&
this.st_isprocesselevated,&
this.st_2,&
this.st_3,&
this.st_isrunasadmin,&
this.st_userinadmingroup,&
this.st_1,&
this.p_shield,&
this.cb_1}
end on
on w_main.destroy
destroy(this.st_isanadmin)
destroy(this.st_4)
destroy(this.st_5)
destroy(this.st_integritylevel)
destroy(this.st_isprocesselevated)
destroy(this.st_2)
destroy(this.st_3)
destroy(this.st_isrunasadmin)
destroy(this.st_userinadmingroup)
destroy(this.st_1)
destroy(this.p_shield)
destroy(this.cb_1)
end on
event open;//////////////////////////////////////////////////////////////////////////////
// Description:
// Open
//
// Author:
// B.Kemner, 20.04.2015
//
inv_privileges = create n_cst_platform_privileges
st_userinadmingroup.text = string(inv_privileges.of_isuserinadmingroup( ))
st_isrunasadmin.text = string(inv_privileges.of_isRunAsAdmin( ))
st_isprocesselevated.text = string(inv_privileges.of_isprocesselevated( ))
st_integritylevel.text = inv_privileges.of_getprocessintegritylevel( )
st_isanadmin.text = string(inv_privileges.of_isUserAnAdmin())
if inv_privileges.of_isRunAsAdmin() then
p_shield.visible = false
end if
return 0
end event
event close;//////////////////////////////////////////////////////////////////////////////
// Description:
// Close
//
// Author:
// B.Kemner, 20.04.2015
//
destroy inv_privileges
return 0
end event
type st_isanadmin from statictext within w_main
integer x = 585
integer y = 416
integer width = 402
integer height = 64
integer textsize = -10
integer weight = 400
fontcharset fontcharset = ansi!
fontpitch fontpitch = variable!
fontfamily fontfamily = swiss!
string facename = "Tahoma"
long textcolor = 33554432
long backcolor = 67108864
alignment alignment = right!
boolean focusrectangle = false
end type
type st_4 from statictext within w_main
integer x = 37
integer y = 416
integer width = 571
integer height = 64
integer textsize = -10
integer weight = 400
fontcharset fontcharset = ansi!
fontpitch fontpitch = variable!
fontfamily fontfamily = swiss!
string facename = "Tahoma"
long textcolor = 33554432
long backcolor = 67108864
string text = "IsAnAdmin:"
boolean focusrectangle = false
end type
type st_5 from statictext within w_main
integer x = 37
integer y = 320
integer width = 571
integer height = 64
integer textsize = -10
integer weight = 400
fontcharset fontcharset = ansi!
fontpitch fontpitch = variable!
fontfamily fontfamily = swiss!
string facename = "Tahoma"
long textcolor = 33554432
long backcolor = 67108864
string text = "Integrity Level:"
boolean focusrectangle = false
end type
type st_integritylevel from statictext within w_main
integer x = 585
integer y = 320
integer width = 402
integer height = 64
integer textsize = -10
integer weight = 400
fontcharset fontcharset = ansi!
fontpitch fontpitch = variable!
fontfamily fontfamily = swiss!
string facename = "Tahoma"
long textcolor = 33554432
long backcolor = 67108864
alignment alignment = right!
boolean focusrectangle = false
end type
type st_isprocesselevated from statictext within w_main
integer x = 585
integer y = 224
integer width = 402
integer height = 64
integer textsize = -10
integer weight = 400
fontcharset fontcharset = ansi!
fontpitch fontpitch = variable!
fontfamily fontfamily = swiss!
string facename = "Tahoma"
long textcolor = 33554432
long backcolor = 67108864
alignment alignment = right!
boolean focusrectangle = false
end type
type st_2 from statictext within w_main
integer x = 37
integer y = 224
integer width = 571
integer height = 64
integer textsize = -10
integer weight = 400
fontcharset fontcharset = ansi!
fontpitch fontpitch = variable!
fontfamily fontfamily = swiss!
string facename = "Tahoma"
long textcolor = 33554432
long backcolor = 67108864
string text = "IsProcessElevated:"
boolean focusrectangle = false
end type
type st_3 from statictext within w_main
integer x = 37
integer y = 128
integer width = 571
integer height = 64
integer textsize = -10
integer weight = 400
fontcharset fontcharset = ansi!
fontpitch fontpitch = variable!
fontfamily fontfamily = swiss!
string facename = "Tahoma"
long textcolor = 33554432
long backcolor = 67108864
string text = "IsRunAsAdmin:"
boolean focusrectangle = false
end type
type st_isrunasadmin from statictext within w_main
integer x = 585
integer y = 128
integer width = 402
integer height = 64
integer textsize = -10
integer weight = 400
fontcharset fontcharset = ansi!
fontpitch fontpitch = variable!
fontfamily fontfamily = swiss!
string facename = "Tahoma"
long textcolor = 33554432
long backcolor = 67108864
alignment alignment = right!
boolean focusrectangle = false
end type
type st_userinadmingroup from statictext within w_main
integer x = 658
integer y = 32
integer width = 329
integer height = 64
integer textsize = -10
integer weight = 400
fontcharset fontcharset = ansi!
fontpitch fontpitch = variable!
fontfamily fontfamily = swiss!
string facename = "Tahoma"
long textcolor = 33554432
long backcolor = 67108864
alignment alignment = right!
boolean focusrectangle = false
end type
type st_1 from statictext within w_main
integer x = 37
integer y = 32
integer width = 549
integer height = 64
integer textsize = -10
integer weight = 400
fontcharset fontcharset = ansi!
fontpitch fontpitch = variable!
fontfamily fontfamily = swiss!
string facename = "Tahoma"
long textcolor = 33554432
long backcolor = 67108864
string text = "IsUserInAdminGroup:"
boolean focusrectangle = false
end type
type p_shield from picture within w_main
integer x = 73
integer y = 640
integer width = 146
integer height = 128
boolean originalsize = true
string picturename = "C:\Users\Siron\PowerBuilder\Privileges\Shield.png"
boolean focusrectangle = false
end type
event clicked;cb_1.triggerEvent(clicked!)
end event
type cb_1 from commandbutton within w_main
integer x = 37
integer y = 608
integer width = 951
integer height = 192
integer taborder = 10
integer textsize = -10
integer weight = 400
fontcharset fontcharset = ansi!
fontpitch fontpitch = variable!
fontfamily fontfamily = swiss!
string facename = "Tahoma"
string text = "Self-Elevating"
boolean flatstyle = true
end type
event clicked;if inv_privileges.of_selfelevation( ) = 1 then
halt
end if
end event