Created
June 18, 2024 01:26
-
-
Save mike-clark-8192/9db20f48884302ca9c1ea9ea150acdf5 to your computer and use it in GitHub Desktop.
Pwsh& Here
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Windows Registry Editor Version 5.00 | |
[HKEY_CLASSES_ROOT\Folder\shell\cmdhere] | |
@="Cmd& Here" | |
[HKEY_CLASSES_ROOT\Folder\shell\cmdhere\command] | |
@="cmd /k \"cls&pushd \"%l\"\"" | |
[HKEY_CLASSES_ROOT\Directory\Background\shell\cmdhere] | |
@="Cmd& Here" | |
[HKEY_CLASSES_ROOT\Directory\Background\shell\cmdhere\command] | |
@="cmd /k \"cls&pushd \"%V\"\"" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Windows Registry Editor Version 5.00 | |
[HKEY_CLASSES_ROOT\Folder\shell\pwshhere] | |
@="Pwsh& Here" | |
[HKEY_CLASSES_ROOT\Folder\shell\pwshhere\command] | |
@="pwsh -NoExit -Command \"Set-Location '%l'\"" | |
[HKEY_CLASSES_ROOT\Directory\Background\shell\pwshhere] | |
@="Pwsh& Here" | |
[HKEY_CLASSES_ROOT\Directory\Background\shell\pwshhere\command] | |
@="pwsh -NoExit -Command \"Set-Location '%v'\"" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Windows Registry Editor Version 5.00 | |
[HKEY_CLASSES_ROOT\Folder\shell\wthere] | |
@="WT& Here" | |
[HKEY_CLASSES_ROOT\Folder\shell\wthere\command] | |
@="wt nt --appendCommandLine \"cd '%l'\"" | |
[HKEY_CLASSES_ROOT\Directory\Background\shell\wthere] | |
@="WT& Here" | |
[HKEY_CLASSES_ROOT\Directory\Background\shell\wthere\command] | |
@="wt nt --appendCommandLine \"cd '%V'\"" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Windows Registry Editor Version 5.00 | |
[HKEY_CLASSES_ROOT\Folder\shell\wthere] | |
@="WT& Here" | |
[HKEY_CLASSES_ROOT\Folder\shell\wthere\command] | |
@="wt nt -d \"%l\"" | |
[HKEY_CLASSES_ROOT\Directory\Background\shell\wthere] | |
@="WT& Here" | |
[HKEY_CLASSES_ROOT\Directory\Background\shell\wthere\command] | |
@="wt nt -d \"%V\"" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Windows Registry Editor Version 5.00 | |
[-HKEY_CLASSES_ROOT\Directory\Background\shell\cmdhere\command] | |
[-HKEY_CLASSES_ROOT\Directory\Background\shell\cmdhere] | |
[-HKEY_CLASSES_ROOT\Folder\shell\cmdhere\command] | |
[-HKEY_CLASSES_ROOT\Folder\shell\cmdhere] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Windows Registry Editor Version 5.00 | |
[-HKEY_CLASSES_ROOT\Directory\Background\shell\pwshhere\command] | |
[-HKEY_CLASSES_ROOT\Directory\Background\shell\pwshhere] | |
[-HKEY_CLASSES_ROOT\Folder\shell\pwshhere\command] | |
[-HKEY_CLASSES_ROOT\Folder\shell\pwshhere] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Windows Registry Editor Version 5.00 | |
[-HKEY_CLASSES_ROOT\Directory\Background\shell\wthere\command] | |
[-HKEY_CLASSES_ROOT\Directory\Background\shell\wthere] | |
[-HKEY_CLASSES_ROOT\Folder\shell\wthere\command] | |
[-HKEY_CLASSES_ROOT\Folder\shell\wthere] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment