Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save jrichardsz/ba96e5dc6c5474a28fb5dbec571510b2 to your computer and use it in GitHub Desktop.
Save jrichardsz/ba96e5dc6c5474a28fb5dbec571510b2 to your computer and use it in GitHub Desktop.
windows tunning snippets
https://www.askvg.com/registry-tweak-to-add-copy-as-path-option-in-files-and-folders-context-menu-in-windows/
## Add_Copy_as_Path_Option.reg
```
Windows Registry Editor Version 5.00
;Created by Vishal Gupta for AskVG.com
[HKEY_CLASSES_ROOT\*\shell\Copy as Path]
[HKEY_CLASSES_ROOT\*\shell\Copy as Path\command]
@="cmd.exe /c echo \"%1\"|clip"
[HKEY_CLASSES_ROOT\Directory\shell\Copy as Path]
[HKEY_CLASSES_ROOT\Directory\shell\Copy as Path\command]
@="cmd.exe /c echo \"%1\"|clip"
```
## Remove_Copy_as_Path_Option.reg
```
Windows Registry Editor Version 5.00
;Created by Vishal Gupta for AskVG.com
[-HKEY_CLASSES_ROOT\*\shell\Copy as Path]
[-HKEY_CLASSES_ROOT\Directory\shell\Copy as Path]
```
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment