I'm using an kix script for our Terminal Server.
The user has the following script in his user profile:
kix logon.kix

and he has an "homedrive mapping to the U drive"

Some code of the script

 Code:

--- LOGON.KIX ---
SetConsole("hide")

if @HOSTNAME = "citrixts.hoofdkantoor.local"
  call mps40login.kix
  Quit
EndIf
------------------

--- mps40login.kix ---

USE H: /D 
USE Q: /D 

USE H: '\\NAS01\Data\Product\Prisma' 
If @error =0
 ? "H succesfully connected"
Else
  WriteLog2("\\nas01\log$\kix.log", + @USERID + "" + " , error connecting H : " + @error + " " + @serror  ,1) 
EndIf

USE Q: '\\NAS01\DATA'
If @error =0
 ? "Q succesfully connected"
Else
  WriteLog2("\\nas01\log$\kix.log", + @USERID + "" + " , error connecting Q : " + @error + " " + @serror  ,1) 
EndIf

-----------------


When i logon with the "/d" flag after the logon script i see what's happening.

He creates the mappings, i see :
"H succesfully connected and Q succesfully connected"
and when i'm logged on i'm going to the windows explorer ...

The only drive i see is "U" (my home drive), but no Q and no H.

After re-logging on some times i get the mappings, but i can't explain why kix says "succesfully connected" and afterwards i don't see them in the explorer ?

Can anybody help me out ?


tnx in advance!