Hi all,I'm about as new as you can get to kixtart, and I've had to hit the ground running. I need to come up with a login script that will copy a file down to a client machine if the source file is newer than the source. This will only happen if the user is a member of a particular NT global group. I don't know enough about kixtart yet to determine if it's best to make this part of the rest of the script or to make a call to a seperate script. At the moment, I have the below code in my script and it's not working.
IF INGROUP ("AODB") = 1
md c:\ausopen
RUN "xcopy p:\ausopen\*.* c:\ausopen\*.* /d"
SLEEP 10
END IF
Nasty I know. This lumped in with the rest of the login script. If anyone has any suggestions as to how I might change the code or if I should use another program to copy the file, that would be great. The clients are mostly Win98. Thanks.