Hallo

I have a couple of old PC that Im using as thin dos clients with the citrix client.

I have 3 diffrent applications. Desktop, Internet Explorer and Movex.

I have collected the mac address's in a txt file, that the client reads at boot.

code:
? "My Macaddress =  @address" ? ?

IF Open(3, "t:\movex.txt") = 0
$x = ReadLine(3)
WHILE @ERROR = 0
? "Line read: [" + $x + "]"
$x = ReadLine(3)
IF $x = "@address"
?"Starting MOvex....."
shell "t:\runapp.bat movex"
Close (3)
exit
quit
endif
LOOP
Close (3)
ELSE
BEEP
? "Config file not opened, error code: [" + @ERROR + "]"
ENDIF
exit

It works.

But how do I do if the client are supposed to start Desktop or IE.

Regards
\erik