I need to setup a user's profile in Outlook on a terminal server. We are using the prf method to do this, but when this script runs:
set oExec= oShell.Exec(strOutlook & "/importprf Outlook2003CitrixProfile.PRF")
oExec.Terminate
it opens outlook and then I try to terminate. The problem is the termination is happening before Outlook is completely open. Is there anyway t ohave the exec wait until it is completely loaded before running the next step?
set oExec= oShell.Exec(strOutlook & "/importprf Outlook2003CitrixProfile.PRF")
oExec.Terminate
it opens outlook and then I try to terminate. The problem is the termination is happening before Outlook is completely open. Is there anyway t ohave the exec wait until it is completely loaded before running the next step?