There are certain file operations in Windows (7/10) I'd like to automate (ie moving all files of a certain file type in a given directory up a directory, and then deleting that directory and the rest of the files in it).
I know how to write a program in Node to do this, but rather than going into each directory and right click -> Git Bash Here -> run my script, I'd like to be able to just right click on the directory and have an option in the directory's context menu to run my Node script directly.
Is there some sort of way to do this through the Windows registry without having to write a full-blown, installed, native application?
I'm just looking for a simple, lightweight, hacky(?) way to run a small Node script from the windows directory context menu (that does simple operations on the files in that directory).