-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathTOOL_List-in-Clipboard.reg
More file actions
120 lines (116 loc) · 15.4 KB
/
TOOL_List-in-Clipboard.reg
File metadata and controls
120 lines (116 loc) · 15.4 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
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
Windows Registry Editor Version 5.00
;List files in Clipboard | WindowsContextMenuTools created by VincentBounce
;BUG when pasting Unicode chars on Windows 11 VM
;from DIRECTORY | Windows Explorer folder icon | can use %1 or %L or %V
[-HKEY_CLASSES_ROOT\Directory\shell\run100FileListClipboard] ;removing previous version
[HKEY_CLASSES_ROOT\Directory\shell\run100FileListClipboard]
"MUIVerb"="List files in &Clipboard"
"subcommands"=""
"Icon"="%SystemRoot%\\system32\\mssvp.dll,-506" ;"Icon"="%SystemRoot%\\system32\\DxpTaskSync.dll,-52"
;FOLDERS & FILES
[HKEY_CLASSES_ROOT\Directory\shell\run100FileListClipboard\shell\run10100]
@="List &content"
"Icon"="%SystemRoot%\\system32\\mydocs.dll,-100"
[HKEY_CLASSES_ROOT\Directory\shell\run100FileListClipboard\shell\run10100\command]
@="cmd.exe /c title List loading... & ( echo [FOLDERS sorted alphabetically]& dir \"%V\" /b /a:d /o:n & echo. & echo [FILES sorted alphabetically]& dir \"%V\" /b /a:-d /o:n ) | clip.exe"
;FOLDERS & FILES & SUBFOLDERS
[HKEY_CLASSES_ROOT\Directory\shell\run100FileListClipboard\shell\run20100]
@="List content with &subfolders"
"Icon"="%SystemRoot%\\system32\\shell32.dll,-16806"
[HKEY_CLASSES_ROOT\Directory\shell\run100FileListClipboard\shell\run20100\command]
@="cmd.exe /c title List loading... & ( echo [FOLDERS sorted alphabetically]& dir \"%V\" /b /a:d /o:n /s & echo. & echo [FILES sorted alphabetically]& dir \"%V\" /b /a:-d /o:n /s ) | clip.exe"
;FOLDERS & FILES & SUBFOLDERS AS ADMIN
[HKEY_CLASSES_ROOT\Directory\shell\run100FileListClipboard\shell\runas]
@="List content with subfolders as &Admin"
"Icon"="%SystemRoot%\\system32\\shell32.dll,-16806"
"HasLUAShield"=""
[HKEY_CLASSES_ROOT\Directory\shell\run100FileListClipboard\shell\runas\command] ;only adding /s 2 times after 2 dir below
@="cmd.exe /c title List loading... & ( echo [FOLDERS sorted alphabetically]& dir \"%V\" /b /a:d /o:n /s & echo. & echo [FILES sorted alphabetically]& dir \"%V\" /b /a:-d /o:n /s ) | clip.exe"
;FILES
[HKEY_CLASSES_ROOT\Directory\shell\run100FileListClipboard\shell\runBB100]
@="List only &files"
"Icon"="%SystemRoot%\\system32\\AdmTmpl.dll,-4"
[HKEY_CLASSES_ROOT\Directory\shell\run100FileListClipboard\shell\runBB100\command]
@="cmd.exe /c title List loading... & ( echo [FILES sorted alphabetically]& dir \"%V\" /b /a:-d /o:n ) | clip.exe"
;FOLDERS
[HKEY_CLASSES_ROOT\Directory\shell\run100FileListClipboard\shell\runCC100]
@="List only f&olders"
"Icon"="%SystemRoot%\\system32\\imageres.dll,-5382"
[HKEY_CLASSES_ROOT\Directory\shell\run100FileListClipboard\shell\runCC100\command]
@="cmd.exe /c title List loading... & ( echo [FOLDERS sorted alphabetically]& dir \"%V\" /b /a:d /o:n ) | clip.exe"
;from DRIVE | Windows Explorer folder icon | can use %1 or %L or %V
[-HKEY_CLASSES_ROOT\Drive\shell\run100FileListClipboard]
[HKEY_CLASSES_ROOT\Drive\shell\run100FileListClipboard]
"MUIVerb"="List files in &Clipboard"
"subcommands"=""
"Icon"="%SystemRoot%\\system32\\mssvp.dll,-506"
;"Icon"="%SystemRoot%\\system32\\DxpTaskSync.dll,-52"
;FOLDERS & FILES
[HKEY_CLASSES_ROOT\Drive\shell\run100FileListClipboard\shell\run10100]
@="List &content"
"Icon"="%SystemRoot%\\system32\\mydocs.dll,-100"
[HKEY_CLASSES_ROOT\Drive\shell\run100FileListClipboard\shell\run10100\command]
@="cmd.exe /c title List loading... & ( echo [FOLDERS sorted alphabetically]& dir \"%V\" /b /a:d /o:n & echo. & echo [FILES sorted alphabetically]& dir \"%V\" /b /a:-d /o:n ) | clip.exe"
;FOLDERS & FILES & SUBFOLDERS
[HKEY_CLASSES_ROOT\Drive\shell\run100FileListClipboard\shell\run20100]
@="List content with &subfolders"
"Icon"="%SystemRoot%\\system32\\shell32.dll,-16806"
[HKEY_CLASSES_ROOT\Drive\shell\run100FileListClipboard\shell\run20100\command]
@="cmd.exe /c title List loading... & ( echo [FOLDERS sorted alphabetically]& dir \"%V\" /b /a:d /o:n /s & echo. & echo [FILES sorted alphabetically]& dir \"%V\" /b /a:-d /o:n /s ) | clip.exe"
;FOLDERS & FILES & SUBFOLDERS AS ADMIN
[HKEY_CLASSES_ROOT\Drive\shell\run100FileListClipboard\shell\runas]
@="List content with subfolders as &Admin"
"Icon"="%SystemRoot%\\system32\\shell32.dll,-16806"
"HasLUAShield"=""
[HKEY_CLASSES_ROOT\Drive\shell\run100FileListClipboard\shell\runas\command] ;only adding /s 2 times after 2 dir below
@="cmd.exe /c title List loading... & ( echo [FOLDERS sorted alphabetically]& dir \"%V\" /b /a:d /o:n /s & echo. & echo [FILES sorted alphabetically]& dir \"%V\" /b /a:-d /o:n /s ) | clip.exe"
;FILES
[HKEY_CLASSES_ROOT\Drive\shell\run100FileListClipboard\shell\runBB100]
@="List only &files"
"Icon"="%SystemRoot%\\system32\\AdmTmpl.dll,-4"
[HKEY_CLASSES_ROOT\Drive\shell\run100FileListClipboard\shell\runBB100\command]
@="cmd.exe /c title List loading... & ( echo [FILES sorted alphabetically]& dir \"%V\" /b /a:-d /o:n ) | clip.exe"
;FOLDERS
[HKEY_CLASSES_ROOT\Drive\shell\run100FileListClipboard\shell\runCC100]
@="List only f&olders"
"Icon"="%SystemRoot%\\system32\\imageres.dll,-5382"
[HKEY_CLASSES_ROOT\Drive\shell\run100FileListClipboard\shell\runCC100\command]
@="cmd.exe /c title List loading... & ( echo [FOLDERS sorted alphabetically]& dir \"%V\" /b /a:d /o:n ) | clip.exe"
;from BACKGROUND | Windows Explorer right pane background folder | need to use %V
[-HKEY_CLASSES_ROOT\Directory\Background\shell\run100FileListClipboard] ;removing previous version
[HKEY_CLASSES_ROOT\Directory\Background\shell\run100FileListClipboard]
"MUIVerb"="List files in &Clipboard"
"subcommands"=""
"Icon"="%SystemRoot%\\system32\\mssvp.dll,-506"
;"Icon"="%SystemRoot%\\system32\\DxpTaskSync.dll,-52"
;FOLDERS & FILES
[HKEY_CLASSES_ROOT\Directory\Background\shell\run100FileListClipboard\shell\run10100]
@="List &content"
"Icon"="%SystemRoot%\\system32\\mydocs.dll,-100"
[HKEY_CLASSES_ROOT\Directory\Background\shell\run100FileListClipboard\shell\run10100\command]
@="cmd.exe /c title List loading... & ( echo [FOLDERS sorted alphabetically]& dir \"%V\" /b /a:d /o:n & echo. & echo [FILES sorted alphabetically]& dir \"%V\" /b /a:-d /o:n ) | clip.exe"
;FOLDERS & FILES & SUBFOLDERS
[HKEY_CLASSES_ROOT\Directory\Background\shell\run100FileListClipboard\shell\run20100]
@="List content with &subfolders"
"Icon"="%SystemRoot%\\system32\\shell32.dll,-16806"
[HKEY_CLASSES_ROOT\Directory\Background\shell\run100FileListClipboard\shell\run20100\command]
@="cmd.exe /c title List loading... & ( echo [FOLDERS sorted alphabetically]& dir \"%V\" /b /a:d /o:n /s & echo. & echo [FILES sorted alphabetically]& dir \"%V\" /b /a:-d /o:n /s ) | clip.exe"
;FOLDERS & FILES & SUBFOLDERS AS ADMIN
[HKEY_CLASSES_ROOT\Directory\Background\shell\run100FileListClipboard\shell\runas]
@="List content with subfolders as &Admin"
"Icon"="%SystemRoot%\\system32\\shell32.dll,-16806"
"HasLUAShield"=""
[HKEY_CLASSES_ROOT\Directory\Background\shell\run100FileListClipboard\shell\runas\command] ;only adding /s 2 times after 2 dir below
@="cmd.exe /c title List loading... & ( echo [FOLDERS sorted alphabetically]& dir \"%V\" /b /a:d /o:n /s & echo. & echo [FILES sorted alphabetically]& dir \"%V\" /b /a:-d /o:n /s ) | clip.exe"
;FILES
[HKEY_CLASSES_ROOT\Directory\Background\shell\run100FileListClipboard\shell\runBB100]
@="List only &files"
"Icon"="%SystemRoot%\\system32\\AdmTmpl.dll,-4"
[HKEY_CLASSES_ROOT\Directory\Background\shell\run100FileListClipboard\shell\runBB100\command]
@="cmd.exe /c title List loading... & ( echo [FILES sorted alphabetically]& dir \"%V\" /b /a:-d /o:n ) | clip.exe"
;FOLDERS
[HKEY_CLASSES_ROOT\Directory\Background\shell\run100FileListClipboard\shell\runCC100]
@="List only f&olders"
"Icon"="%SystemRoot%\\system32\\imageres.dll,-5382"
[HKEY_CLASSES_ROOT\Directory\Background\shell\run100FileListClipboard\shell\runCC100\command]
@="cmd.exe /c title List loading... & ( echo [FOLDERS sorted alphabetically]& dir \"%V\" /b /a:d /o:n ) | clip.exe"