Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
305 B

  1. TS.Connect();
  2. TS.WaitForTextAndSleep("My Computer", 10000);
  3. while(true)
  4. {
  5. TS.Start("winword.exe");
  6. TS.WaitForTextAndSleep("Microsoft Word", 5000);
  7. TS.Maximize();
  8. Sleep(3000);
  9. TS.KeyAlt('f');
  10. TS.WaitForTextAndSleep("Exit", 2000);
  11. TS.KeyPress('x');
  12. Sleep(4000);
  13. }