Hello,
There are a couple ways with in TE to do this by a script.. the first is The Run_Application.. the below script is a working example of that from a Windows Mobile 6.5 device..
Script( Scan-To-Config )
Activate( From_Menu )
Run_Application( "\\Program Files\\Wavelink\\Avalanche\\Monitor.exe", "/stc", FALSE )
Return
** The only issue with this method is the enabler GUI has to running in the background.. When you exit the STC GUI the enabler will have focus, so a quick tap of the TE icon in the enabler will have to be done to bring the TE client back into focus..
If the enabler isn't running then we can edit the script to launch the enabler with a delay..
Script( Scan-To-Config )
Activate( From_Menu )
Run_Application( "\\Program Files\\Wavelink\\Avalanche\\Enabler.exe", "", FALSE )
Delay(1500)
Run_Application( "\\Program Files\\Wavelink\\Avalanche\\Monitor.exe", "/stc", FALSE )
Return
The delay will need to be played with to determine the correct amount of time to wait..
While this method works, its not with out its hiccups.
Hope this works for you.