Troy,
There are a couple of different options to distribute a Search Directory for a computer that does not have the Sequence Editor.
(1) Distribute your TestExec.ini file. The TestExec.ini file is in the <TestStand>\Cfg directory. It contains the StationOptions and SearchDirectories for a computer. You can add the TestExec.ini as a relative path and it should get distributed correctly to your other computer.
(2) Distribute one of the Full Featured Operator Interfaces found in the <TestStand>\OperatorInterfaces directory. Each of these OI executables contains a Menu similar to the one you would find in the Sequence Editor. You can adjust Search Directories from within the OI. It isn't a bad idea to have one of these OI's on your distributed machine so you can make other adjustments.
(3) Programmatically set a Search Directory. You can get the SearchDirectories from within a Sequence by using the RunState.Engine object.
(a) Insert an ActiveX step to your Sequence with the following settings.
Object: RunState.Engine
Server: TestStand API
Class: Engine (IEngine)
Get Property: Search Directories
Parameters: Locals.mySearchDirectories (must be created as an Object Reference in the Locals).
(b) Insert an ActiveX step after the previous one:
Object: Locals.mySearchDirectories
Server: TestStand API
Class: SearchDirectories
Call Method: Insert
Parameters: You can assign all the parameters that are also available in the Search Directories dialog from here. Check the help on this function for specific details on all the different parameters.
Let me know if you have further questions.
Thanks,
Tyler Tigue