Forum Discussion
AlexanderM
Staff
15 years agoHello Anders,
Please refer to my answer that concerns executing an application by using rundll32.exe in this thread.
Another way to launch an application from TestComplete is to use the Run method of the WScript.Shell object:
var WshShell = Sys.OleObject("WScript.Shell");
WshShell.Run(<path to .appref-ms>);
See also the following MSDN library article: Run Method (Windows Script Host).