En fait, the current answer isn't out of date. J'ai essayé the exact same thing on Windows 10 and was able to add Run Batch script to the context menu of all folders in Windows.
This is the content of my batch script (won't work with UNC paths):
@ECHO OFF
ECHO %n0 was called with the following arguments:
SET args=%*
IF NOT DEFINED args GOTO END
ECHO %*
:END
PAUSE
Le registre changes I made can be replicated with this REG file:
Windows Éditeur du registre Version 5.00
[HKEY_CLASSES_ROOT\Directory\shell\Run Batch script]
@="&Run Batch script"
[HKEY_CLASSES_ROOT\Directory\shell\Run Batch script\command]
@="\"H:\BATCH_FILE_PATH\context-batch.bat\" \"%1\""
This only adds a context menu item for all directories/folders in Windows. Si vous voulez it showing for each and every file instead, vous pouvez utiliser this:
Windows Éditeur du registre Version 5.00
[HKEY_CLASSES_ROOT*\shell\Run script]
@="Run &script"
[HKEY_CLASSES_ROOT*\shell\Run script\command]
@="\"H:\BATCH_FILE_PATH\context-batch.bat\" \"%1\""
Sinon, vous pouvez add your batch script to the Send To item list by creating a shortcut to your batch script and placing it under %APPDATA%\Microsoft\Windows\SendTo (or enter shell:sendto into the barre d'adresse)
Si vous voulez your script to show in the context menu that appears when you clic droit on the empty space within a directory (directory background?) vous pouvez utiliser the following REG file:
Windows Éditeur du registre Version 5.00
[HKEY_CLASSES_ROOT\Directory\Background\shell\Run Batch script]
@="&Run Batch script"
"Icon"="%SystemRoot%\System32\shell32.dll,71"
[HKEY_CLASSES_ROOT\Directory\Background\shell\Run Batch script\command]
@="H:\BATCH_FILE_PATH\context-batch.bat \"%V\""
You don't need the "Icon"="%SystemRoot%\\System32\\shell32.dll,71" line. It simply adds an icon to your context-menu that looks like this: