Posted by member 7 on 2003-06-30 14:23:18 link

!Execute ["control.exe timedate.cpl"]

By the way, the most likely reason why this didn't work is that you put the entire string inside the brackets in "" quotes. timedate.cpl is the parameter and not part of the executable's name. These should have worked fine:
!Execute [control.exe timedate.cpl]
!Execute ["control.exe" timedate.cpl]