-
Notifications
You must be signed in to change notification settings - Fork 0
/
InstallContextMenuEntries.reg
37 lines (29 loc) · 1.63 KB
/
InstallContextMenuEntries.reg
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
Windows Registry Editor Version 5.00
;= Context menu to ignore folders:
[HKEY_CLASSES_ROOT\Directory\shell\Dropbox Ignore Folder]
"AppliesTo"="System.ItemPathDisplay:\"Dropbox\""
"Icon"="C:\\Program Files (x86)\\Dropbox\\Client\\Dropbox.exe,12"
@="Ignore from Dropbox"
[HKEY_CLASSES_ROOT\Directory\shell\Dropbox Ignore Folder\command]
@="powershell.exe -WindowStyle hidden -Command \"Set-Content -Path \\\"%1\\\" -Stream com.dropbox.ignored -Value 1\""
;= Context menu to un-ignore folders:
[HKEY_CLASSES_ROOT\Directory\shell\Dropbox UnIgnore Folder]
"AppliesTo"="System.ItemPathDisplay:\"Dropbox\""
"Icon"="C:\\Program Files (x86)\\Dropbox\\Client\\Dropbox.exe,12"
@="Un-Ignore from Dropbox"
[HKEY_CLASSES_ROOT\Directory\shell\Dropbox UnIgnore Folder\command]
@="powershell.exe -WindowStyle hidden -Command \"Clear-Content -Path \\\"%1\\\" -Stream com.dropbox.ignored\""
;= Context menu to ignore files:
[HKEY_CLASSES_ROOT\*\shell\Dropbox Ignore File]
"AppliesTo"="System.ItemPathDisplay:\"Dropbox\""
"Icon"="C:\\Program Files (x86)\\Dropbox\\Client\\Dropbox.exe,12"
@="Ignore from Dropbox"
[HKEY_CLASSES_ROOT\*\shell\Dropbox Ignore File\command]
@="powershell.exe -WindowStyle hidden -Command \"Set-Content -Path \\\"%1\\\" -Stream com.dropbox.ignored -Value 1\""
;= Context menu to un-ignore files:
[HKEY_CLASSES_ROOT\*\shell\Dropbox UnIgnore File]
"AppliesTo"="System.ItemPathDisplay:\"Dropbox\""
"Icon"="C:\\Program Files (x86)\\Dropbox\\Client\\Dropbox.exe,12"
@="Un-Ignore from Dropbox"
[HKEY_CLASSES_ROOT\*\shell\Dropbox UnIgnore File\command]
@="powershell.exe -WindowStyle hidden -Command \"Clear-Content -Path \\\"%1\\\" -Stream com.dropbox.ignored\""