Hi all. I'm not sure if this is the correct place to post this, but whatever. I have a simple .reg file that adds the command 'Open Dos Box' to the menu that pops up when you right click a file (on windows) I want it to open a DOS window. Here is the code (working example):
REGEDIT4
[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\*\Shell\Open DOS box
[HKEY_LOCAL_MACHINE\SOFTWARE\Classes\*\Shell\Open DOS box\command
With that in mind, one could easily open the registry editor and set the Value Data (of 'command') to "cmd.exe" (command prompt). The only problem is that I want to do it without the use of registry editor. something simple, like notepad. I saw somewhere that you can use something like
@=3D"cmd.exe"
to set value data's, but I've had no luck. Any sugestions?