in reply to Re^2: How do I start perl without having a "cmd.exe" window (wperl)
in thread How do I start perl without having a "cmd.exe" window

You can also add tools that you use repeatedly to right click context menu in windows. Ive done that for a ton of tools in the past.
  • Comment on Re^3: How do I start perl without having a "cmd.exe" window (wperl)

Replies are listed 'Best First'.
Re^4: How do I start perl without having a "cmd.exe" window (wperl)
by james28909 (Deacon) on Mar 23, 2015 at 17:26 UTC
    To do this all you got to do is open regedit. Then navigate to hkey_classes_root/*/shell. Right click on "shell" and select "new" and then select "key" and then name it. What ever you name this key is what will show up on the right click menu. So if you name it "This is a test key" then that is what will show up on the right click menu.
    Next, right click on the key you created and select "new" and then "key" again. This time name this key specifically "command". Once you have named it, you edit the value. I have a script called reverse.pl, so when I edit the value, i put in there "C:\perl\bin\perl.exe C:\users\james\dropbox\scripts\reverse.pl %1" the when I right click a file, it will have that option to run that script per each right clicked file.

    Once you do this, you should be able to right click any file, and the command will be right in right click context menu.