Right Click Context in File Explorer “Copy [default] folders here”
I want to run a centrally stored batch file from a right click context menu, but the batch file needs to change its' relative location (%~dp0) reference to where the user right clicked instead of the location of the batch file.
So basically I need this sequence to work...
1) When a user selects an option from a Right Click context menu in File Explorer, the folder they are in is set as a variable
2) A batch file is started and uses the location variable set in step 1 for the work being performed...
I know the batch code for doing the work I want done (creating new folders) and I am able to create a registry entry for the right click context menu, I just don't know how to pass the folder location the user right clicked in as a variable to use in the batch file.
Thoughts? Would PowerShell be a better option?
windows-10 windows-explorer powershell batch context-menu
add a comment |
I want to run a centrally stored batch file from a right click context menu, but the batch file needs to change its' relative location (%~dp0) reference to where the user right clicked instead of the location of the batch file.
So basically I need this sequence to work...
1) When a user selects an option from a Right Click context menu in File Explorer, the folder they are in is set as a variable
2) A batch file is started and uses the location variable set in step 1 for the work being performed...
I know the batch code for doing the work I want done (creating new folders) and I am able to create a registry entry for the right click context menu, I just don't know how to pass the folder location the user right clicked in as a variable to use in the batch file.
Thoughts? Would PowerShell be a better option?
windows-10 windows-explorer powershell batch context-menu
add a comment |
I want to run a centrally stored batch file from a right click context menu, but the batch file needs to change its' relative location (%~dp0) reference to where the user right clicked instead of the location of the batch file.
So basically I need this sequence to work...
1) When a user selects an option from a Right Click context menu in File Explorer, the folder they are in is set as a variable
2) A batch file is started and uses the location variable set in step 1 for the work being performed...
I know the batch code for doing the work I want done (creating new folders) and I am able to create a registry entry for the right click context menu, I just don't know how to pass the folder location the user right clicked in as a variable to use in the batch file.
Thoughts? Would PowerShell be a better option?
windows-10 windows-explorer powershell batch context-menu
I want to run a centrally stored batch file from a right click context menu, but the batch file needs to change its' relative location (%~dp0) reference to where the user right clicked instead of the location of the batch file.
So basically I need this sequence to work...
1) When a user selects an option from a Right Click context menu in File Explorer, the folder they are in is set as a variable
2) A batch file is started and uses the location variable set in step 1 for the work being performed...
I know the batch code for doing the work I want done (creating new folders) and I am able to create a registry entry for the right click context menu, I just don't know how to pass the folder location the user right clicked in as a variable to use in the batch file.
Thoughts? Would PowerShell be a better option?
windows-10 windows-explorer powershell batch context-menu
windows-10 windows-explorer powershell batch context-menu
asked Jan 17 at 22:59
DHHDHH
512
512
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
I figured it out....
1) Registry entry to setup the right click context option..
Windows Registry Editor Version 5.00
[HKEY_CLASSES_ROOTDirectoryBackgroundshellCreate Client Folders]
@="&Create Client Folders"
"Icon"="%SystemRoot%\System32\shell32.dll,71"
[HKEY_CLASSES_ROOTDirectoryBackgroundshellCreate Client Folderscommand]
@="DRIVELETTER:\FOLDER\batch_file_name.bat "%V""
- In Batch file, use %cd% to get the right click location (this is only when clicking in the open "white space" of a folder,,, not on a folder itself...
my example batch file to create folders based on contents of text file...
set TheRoot=%cd%
for /F "tokens=1 delims=," %%d IN
(DRIVELETTER:FOLDERTextFileName.txt) DO md "%TheRoot%%%d"
The text file is just a return delimited file with folder names
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "3"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1395567%2fright-click-context-in-file-explorer-copy-default-folders-here%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
I figured it out....
1) Registry entry to setup the right click context option..
Windows Registry Editor Version 5.00
[HKEY_CLASSES_ROOTDirectoryBackgroundshellCreate Client Folders]
@="&Create Client Folders"
"Icon"="%SystemRoot%\System32\shell32.dll,71"
[HKEY_CLASSES_ROOTDirectoryBackgroundshellCreate Client Folderscommand]
@="DRIVELETTER:\FOLDER\batch_file_name.bat "%V""
- In Batch file, use %cd% to get the right click location (this is only when clicking in the open "white space" of a folder,,, not on a folder itself...
my example batch file to create folders based on contents of text file...
set TheRoot=%cd%
for /F "tokens=1 delims=," %%d IN
(DRIVELETTER:FOLDERTextFileName.txt) DO md "%TheRoot%%%d"
The text file is just a return delimited file with folder names
add a comment |
I figured it out....
1) Registry entry to setup the right click context option..
Windows Registry Editor Version 5.00
[HKEY_CLASSES_ROOTDirectoryBackgroundshellCreate Client Folders]
@="&Create Client Folders"
"Icon"="%SystemRoot%\System32\shell32.dll,71"
[HKEY_CLASSES_ROOTDirectoryBackgroundshellCreate Client Folderscommand]
@="DRIVELETTER:\FOLDER\batch_file_name.bat "%V""
- In Batch file, use %cd% to get the right click location (this is only when clicking in the open "white space" of a folder,,, not on a folder itself...
my example batch file to create folders based on contents of text file...
set TheRoot=%cd%
for /F "tokens=1 delims=," %%d IN
(DRIVELETTER:FOLDERTextFileName.txt) DO md "%TheRoot%%%d"
The text file is just a return delimited file with folder names
add a comment |
I figured it out....
1) Registry entry to setup the right click context option..
Windows Registry Editor Version 5.00
[HKEY_CLASSES_ROOTDirectoryBackgroundshellCreate Client Folders]
@="&Create Client Folders"
"Icon"="%SystemRoot%\System32\shell32.dll,71"
[HKEY_CLASSES_ROOTDirectoryBackgroundshellCreate Client Folderscommand]
@="DRIVELETTER:\FOLDER\batch_file_name.bat "%V""
- In Batch file, use %cd% to get the right click location (this is only when clicking in the open "white space" of a folder,,, not on a folder itself...
my example batch file to create folders based on contents of text file...
set TheRoot=%cd%
for /F "tokens=1 delims=," %%d IN
(DRIVELETTER:FOLDERTextFileName.txt) DO md "%TheRoot%%%d"
The text file is just a return delimited file with folder names
I figured it out....
1) Registry entry to setup the right click context option..
Windows Registry Editor Version 5.00
[HKEY_CLASSES_ROOTDirectoryBackgroundshellCreate Client Folders]
@="&Create Client Folders"
"Icon"="%SystemRoot%\System32\shell32.dll,71"
[HKEY_CLASSES_ROOTDirectoryBackgroundshellCreate Client Folderscommand]
@="DRIVELETTER:\FOLDER\batch_file_name.bat "%V""
- In Batch file, use %cd% to get the right click location (this is only when clicking in the open "white space" of a folder,,, not on a folder itself...
my example batch file to create folders based on contents of text file...
set TheRoot=%cd%
for /F "tokens=1 delims=," %%d IN
(DRIVELETTER:FOLDERTextFileName.txt) DO md "%TheRoot%%%d"
The text file is just a return delimited file with folder names
answered Jan 18 at 17:54
DHHDHH
512
512
add a comment |
add a comment |
Thanks for contributing an answer to Super User!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1395567%2fright-click-context-in-file-explorer-copy-default-folders-here%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown