-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathExtendedRegistrySprocs.sql
More file actions
37 lines (36 loc) · 1 KB
/
ExtendedRegistrySprocs.sql
File metadata and controls
37 lines (36 loc) · 1 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
EXEC sp_helprotect 'xp_regaddmultistring', 'public'
go
EXEC sp_helprotect 'xp_regdeletekey', 'public'
go
EXEC sp_helprotect 'xp_regdeletevalue', 'public'
go
EXEC sp_helprotect 'xp_regenumvalues', 'public'
go
EXEC sp_helprotect 'xp_regenumkeys', 'public'
go
EXEC sp_helprotect 'xp_regremovemultistring', 'public'
go
EXEC sp_helprotect 'xp_regwrite', 'public'
go
EXEC sp_helprotect 'xp_instance_regaddmultistring', 'public'
go
EXEC sp_helprotect 'xp_instance_regdeletekey', 'public'
go
EXEC sp_helprotect 'xp_instance_regdeletevalue', 'public'
go
EXEC sp_helprotect 'xp_instance_regenumvalues', 'public'
go
EXEC sp_helprotect 'xp_instance_regenumkeys', 'public'
go
EXEC sp_helprotect 'xp_instance_regremovemultistring', 'public'
go
EXEC sp_helprotect 'xp_instance_regwrite', 'public'
go
EXEC sp_helprotect 'xp_regread', 'public'
go
EXEC sp_helprotect 'xp_instance_regread', 'public'
GO
REVOKE EXECUTE ON [xp_regread] FROM [PUBLIC]
go
REVOKE EXECUTE ON [xp_instance_regread] FROM [PUBLIC]
go