I can already get a batch file to run when a user right clicks on a file type. How can I make it so that only one instance runs per highlighted group and gets all the files
I'm guessing you have a group of highlighted files and you want to run some program for each file.
@echo off for %%A in (%*) do echo %%A pause