I am new to this kind of scripting and I could really use your help. I have attached a couple of kixtart files.

What I want to do is replace this line in the script: Use T: "\\CCPAMAIN\APPS\TAX_ROLL" with: Use T: " \\NEWMAIN\APPS\TAX_ROLL "

However when I do this and log out and log back on to my client workstation, the same mapping to ccpamain continues to show up.

We use a Win2k Active Directory with logon.bat as the logon script. I've attached both.

Can you help me? I would be most grateful! I look forward to hearing back from you.

Best Regards,
Jon Levin - Naples, Florida - USA
support@cybercastmedia.com

Here is the Kixtart script that I need to modify.....


If ENumIpInfo(0,0) = "28.0.0.3"
Quit
EndIf

SetTime "\\CCPAMAIN"

Use * /Delete

Use H: "\\CCPAMAIN\APPS"
Use L: "\\CCPAMAIN\MAPPING\LIBRARY"
Use P: "\\CCPAMAIN\DATA"
Use S: "\\CCPAMAIN\MAPPING\MRSID"
Use T: "\\CCPAMAIN\APPS\TAX_ROLL"
Use U: "\\CCPAMAIN\USERS\@USERID"
Use V: "\\CCPAMAIN\MAPPING\CCPA_GIS"

If InGroup("Mapping_Group") = 1
Use M: "\\CCPAMAIN\MAPPING\MAPPING"
EndIf

Dim $File_Local, $File_Netwk, $File_Compr

$File_Local = "C:\Program Files\AIT\ADE\Ade2Papr.ebx"
$File_Netwk = "H:\PcUpdate\Paperles\Ade2Papr.ebx"

If Exist($File_Netwk) = 1
If Exist($File_Local) = 0
Copy "$File_Netwk" "$File_Local"
Else
$File_Compr = CompareFileTimes("$File_Netwk","$File_Local")
If $File_Compr = 1
Copy "$File_Netwk" "$File_Local"
EndIf
EndIf
EndIf