Reputation: 2035
I'm a making a simple Win32 batch to perform some tasks. One of them is to add "open prompt here" in every directory. Reading around I learned that you can use Shell32.dll string to table to use its string with regedit, for example this is my batch test.
echo Adding <need string here> to folders
REG ADD HKCR\Directory\Shell\Open.MSDOS /ve /f /d "@%SystemRoot%\system32\shell32.dll,-22022"
REG ADD HKCR\Directory\Shell\Open.MSDOS\command /ve /f /d "cmd.exe /K \"pushd \"%%1\"\""
my question is: How can I extract the string for shell32.dll so the user can see the output like this (Spanish):
Adding Símbolo del sistema to folders
Upvotes: 1
Views: 1071