Thanks for your help thus far chrono. Let me try to go back to the beginning here, which should hopefully help with the big picture (again )
I work for a retail company and we just discovered a fairly major flaw in our POS (point of sale) software, where when offline, our CRM (customer relation manager, think loyalty program/points program) software crawls and causes huge lines to form. The files I have in my batch are those that control the "flow" of the POS. Currently it goes like this:
Locked State > Employee ID log in > Employee Password > CRM (where bottleneck occurs) > scan items to sell > total > yadda yadda.
What I want to do is take out the CRM screen, to do this, I'll need to activate another set of the above 4 files.
So what I'm doing is pinging our CRM server every hour, and if it's offline, I will rename the current set of files to add the .CRM extension and rename a set of files that will be on the register from .NOCRM to the proper extension
IE:
When CRM is down do the following:
Verify .NOCRM files exist
Rename Pos001.flw > Pos001.flw.CRM
Rename Pos001.flw.NOCRM > Pos001.flw
Conversely, when online
Check for .CRM extension, if exists, do:
Pos001.flw > Pos001.flw.NOCRM
Pos001.flw.CRM > Pos001.flw
(note I will be doing this will all 4 files above, but for simplicity sake, I'm using this single file as an example)
Hopefully this will clear things up.