-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathshell_prune.reg
More file actions
38 lines (23 loc) · 802 Bytes
/
shell_prune.reg
File metadata and controls
38 lines (23 loc) · 802 Bytes
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
Windows Registry Editor Version 5.00
; Remove annoying new file options
[-HKEY_CLASSES_ROOT\.bmp\ShellNew]
[-HKEY_CLASSES_ROOT\.rtf\ShellNew]
[-HKEY_CLASSES_ROOT\.pub\Publisher.Document.16\ShellNew]
[-HKEY_CLASSES_ROOT\.pptx\PowerPoint.Show.12\ShellNew]
[-HKEY_CLASSES_ROOT\.accdb\Access.Application.16\ShellNew]
[-HKEY_CLASSES_ROOT\.mdb\ShellNew]
[-HKEY_CLASSES_ROOT\.zip\CompressedFolder\ShellNew]
; Add Markdown to menu
[HKEY_CLASSES_ROOT\.md]
@="markdown"
[HKEY_CLASSES_ROOT\.md\ShellNew]
"NullFile"=""
[HKEY_CLASSES_ROOT\markdown]
@="Blank Markdown file"
; Add Powershell script to menu
[HKEY_CLASSES_ROOT\.ps1]
@="powershellscript"
[HKEY_CLASSES_ROOT\.ps1\ShellNew]
"NullFile"=""
[HKEY_CLASSES_ROOT\powershellscript]
@="Empty powershell script"