Has anyone made a script to list all used probes (tips) in all programs (in a certain folder)? Technically it should be possible - get a list of all programs, open them one after another, scan for LOADPROBE and TIP commands, collect data.
But has anyone already done it? And is able to share?
Andersi: THANK YOU! The file worked perfectly! I had to copy and flatten my file folders to get it to include all files
A quick way to flatten files in folders:
Copy the entire folder (to avoid messing it up!)
open CMD.exe
type "CD\ (your file folder location)" hit enter
type in the following: (less quotes) "
for /r %f in (*) do @copy "%f" ." --BE SURE TO include the period at the end, it's necessary.
Andersi: THANK YOU! The file worked perfectly! I had to copy and flatten my file folders to get it to include all files
A quick way to flatten files in folders:
Copy the entire folder (to avoid messing it up!)
open CMD.exe
type "CD\ (your file folder location)" hit enter
type in the following: (less quotes) "
for /r %f in (*) do @copy "%f" ." --BE SURE TO include the period at the end, it's necessary.