Page 1 of 1 1
Topic Options
#111616 - 2004-01-12 08:35 PM Drives not always mapping??
chadh Offline
Fresh Scripter

Registered: 2004-01-12
Posts: 7
I am having some weird problem with my login script. For some reason it will map the appropriate drives about 50% of the time and the other times it will miss mapping a drive or two. There is no consistency of which drives it does or doesn't map. I researched the previous posts and tried to add the /persistent to to the Use F: /delete, but it still does the same thing. Any help would be appreciated.

Code:
Code:

;; All domain users get the following directories mapped - P: is the Company
;; Public directoy and Z: is the Users personal directory.

;; Assign the public and user directories.
? "Mapping Public Directory for Domain Users"
? "Mapping Users Directory for Domain Users"
If INGROUP("Domain Users")
Use P: /delete /persistent
Use P: "\\kramer\public"
Use Z: /delete /persistent
Use Z: "\\kramer\%username%"
EndIf

;; The Track-It inventory needs to be configured to run automatically upon login.
;; This section is disabled because we have to figure out how to set the TIA
;; variable for the computer name and workstation ID.

;; Disabled - 12/16/2003
;; Start the Track-IT! automatic inventory program
;; ? "Mapping Track-IT! Directory for Domain Users"
;; If INGROUP("Domain Users")
;; Use Y: /delete /persistent
;; Use Y: "\\babu\auditshare"
;; run "y:\audit32.exe"
;; EndIF

;; AASCIF - AASCIF Web Support Mappings.

;; Assign WWW Directory for AASCIFWebSupport Users.
? "Mapping WWW Directory for AASCIFWebSupport Users"
If INGROUP("AASCIFWebSupport")
Use R: /delete /persistent
Use R: "\\babu\www"
EndIf

;; Administration - Executive Services Department Mappings.

;; Assign Department (admin) directory for ExecServ Users.
? "Mapping Admin Directory for Executive Services Users"
If INGROUP("ExecServ")
Use F: /delete /persistent
Use F: "\\kramer\admin"
EndIf

;; Administration - Executive Services Admin Mappings.

;; Assign Drives for ExecServAdmin Users.
? "Mapping Drives for ExecServAdmin Users"
If INGROUP("ExecServAdmin")
Use I: /delete /persistent
Use I: "\\kramer\finance"
Use J: /delete /persistent
Use J: "\\kramer\jeanh"
Use K: /delete /persistent
Use K: "\\kramer\claims"
EndIf

;; Administration - HR Mappings.

;; Assign Department (admin) directory for HRUsers.
? "Mapping Admin Directory for HR Users"
If INGROUP("HRUsers")
Use F: /delete /persistent
Use F: "\\kramer\admin"
EndIf

? "Mapping HRvantage Directory for HRvantage Users"
If INGROUP("HRvantage")
Use H: /delete /persistent
Use H: "\\kramer\hrvantage"
EndIf

? "Mapping Paychex Directory for HRDirector, HRAssistant Users"
If INGROUP("HRDirector", "HRAssistant")
Use G: /delete /persistent
Use G: "\\kramer\admin\paychex"
EndIf

;; Auditing - Auditing Userm Mappings.

;; Assign Policydocs and Insops Directories.
? "Mapping Policydocs Directory for Auditing Users"
? "Mapping Insops Directory for Auditing Users"
If INGROUP("AuditUsers")
Use F: /delete /persistent
Use F: "\\kramer\policydocs"
Use G: /delete /persistent
Use G: "\\kramer\insops"
EndIf

;; Claims - Claims Reps Mappings

;; Assign Department (claims) Directory.
? "Mapping Claims Directory for Claims Reps Users"
If INGROUP("ClaimsUsers")
Use F: /delete /persistent
Use F: "\\kramer\claims"
EndIf

;; Claims - Claims Supervisor Mappings

;; Assign Department (claims) Directory.
? "Mapping Claims Directory for Claims Supervisors"
If INGROUP("ClaimsSupervisors")
Use F: /delete /persistent
Use F: "\\kramer\claims"
EndIf

;; Communications - Communications Mappings

;; Assign Department (comm) Directory.
? "Mapping Comm Directory for Communications Users"
$Group = "Comm"
If INGROUP("$Group")
Use F: /delete /persistent
Use F: "\\keith\comm"
EndIf

;; Assign Insops Directory.
? "Mapping Insops Directory for Communications Admin"
If INGROUP("CommAdmin")
Use G: /delete /persistent
Use G: "\\kramer\insops"
EndIf

;; Comp Rehab - Comp Rehab Mappings

;;Assign Department (comprehab) Directory.
? "Mapping CompRehap Directory for Comp Rehab Users"
If INGROUP("CRUsers")
Use F: /delete /persistent
Use F: "\\kramer\comprehab"
EndIf

;; Comp Cost - (Bill Review) User Mappings

;; Assign Department (compcost) Directory.
? "Mapping CompCost Directory for Comp Cost Bill Review Users"
If INGROUP("ccbillreview")
Use F: /delete /persistent
Use F: "\\kramer\compcost"
EndIf

;; Comp Cost - Comp Cost Supervisor Mappings

;;Assign Compcost and Claims Directories.
? "Mapping Compcost Directory for Comp Cost Supervisor"
? "Mapping Claims Directory for Comp Cost Supervisor"
If INGROUP("CCSupervisor")
Use F: /delete /persistent
Use F: "\\kramer\compcost"
Use G: /delete /persistent
Use G: "\\kramer\claims"
EndIf

;; Comp Cost - Comp Cost CCShare Mapping.

;; Assign CCShare Directory.
? "Mapping CCshare Directory for CCShare Users"
If INGROUP("CCShareUsers")
Use L: /delete /persistent
Use L: "\\kramer\ccshare"
EndIf

;; Comp Cost - Comp Cost Secondary Mapping. This mapping is for users that need
;; access to compcost, but are in different departments.

;; Assign compcost directory to users in different departments.
? "Mapping Compcost Directory for Users in Different Departments"
If INGROUP("FinanceVP", "ExecServAdmin", "ClaimsVP", "ClaimsDirector")
Use H: /delete /persistent
Use H: "\\kramer\compcost"
EndIf

;; Finance - Finance Department Mappings.

;; Assign Department (finance) Directory.
? "Mapping Finance Directory for Finance Users"
If INGROUP("Finance")
Use F: /delete /persistent
Use F: "\\kramer\finance"
EndIf

;; Assign Freedom Directory.
? "Mapping Freedom Directory for FreedomFull Users"
If INGROUP("FinanceFull")
Use Y: /delete /persistent
Use Y: "\\babu\freedom"
EndIf

;;IS - IS Department Mappings.

;; Assign Department (IS) Directory.
? "Mapping IS Directory for IS Users"
If INGROUP("IS")
Use F: /delete /persistent
Use F: "\\kramer\is"
Use Y: /delete /persistent
EndIf

;; Assign Drivers Directory.
? "Mapping Drivers Directory for ISSupport Users"
If INGROUP("ISSupport")
Use I: /delete /persistent
Use I: "\\kramer\drivers"
EndIf

;; Assign Trackit and Paychex Directories.
? "Mapping Trackit Directory for ISVP"
? "Mapping Paychex Directory for ISVP"
If INGROUP("ISVP")
Use G: /delete /persistent
Use G: "\\kramer\admin\paychex"
Use S: /delete /persistent
Use S: "\\babu\trackit"
EndIf

;; Loss Prevention - Loss Prevention Department Mappings.

;; Assign Policydocs and Insops Directories.
? "Mapping Policydocs Directory for LP Users"
? "Mapping Insops directories LP Users"
If INGROUP("LPUsers")
Use F: /delete /persistent
Use F: "\\kramer\policydocs"
Use G: /delete /persistent
Use G: "\\kramer\insops"
EndIf

;; LSA - LSA Department Mappings.

;; Assign Department (legal) Directory.
? "Mapping Legal Directory for LSA Users"
If INGROUP("Legal")
Use F: /delete /persistent
Use F: "\\kramer\legal"
EndIf

;; Policy Holder Services Mappings.

;; Assign Policydocs and Insops Directories.
? "Mapping Policydocs Directory for PHS Users"
? "Mapping Insops directories for PHS Users"
If INGROUP("PHSUsers")
Use F: /delete /persistent
Use F: "\\kramer\policydocs"
Use G: /delete /persistent
Use G: "\\kramer\insops"
EndIf

;; Sales - Sales Department Mappings.

;; Assign Policydocs and Insops Directories.
? "Mapping Policydocs Directory for Sales Users"
? "Mapping Insops directories for Sales Users"
If INGROUP("SalesUsers")
Use F: /delete /persistent
Use F: "\\kramer\policydocs"
Use G: /delete /persistent
Use G: "\\kramer\insops"
EndIf


;; Training - this will be setup at a later time.

;; Underwriting - Underwriting Deparment Mappings.

;; Assign Policydocs and Insops Directories.
? "Mapping Policydocs Directory for UW Users"
? "Mapping Insops Directory for UW Users"
If INGROUP("UWUsers")
Use F: /delete /persistent
Use F: "\\kramer\policydocs"
Use G: /delete /persistent
Use G: "\\kramer\insops"
Use H: /delete /persistent
Use H: "\\kramer\underwritingdoc"
EndIf

;; Supervisor Mappings.

;; Assign Supervisor Directory.
? "Mapping Supervisors Directory for Supervisors"
If INGROUP("ClaimsSupervisors")
Use S: /delete /persistent
Use S: "\\kramer\supervisors"
If INGROUP("ClaimsDirector")
Use O: /delete /persistent
Use O: "\\kramer\claimssupervisors"
EndIf
EndIf

;; Check Image Drive Mapping.

;; Assign CheckImage Directory.
? "Mapping CheckImage Directory for CheckImage Users"
If INGROUP("CheckImage", "CheckImageAdmin")
Use K: /delete /persistent
Use K: "\\kramer\check"
EndIf

;; Wisconsin Drive Mapping.

;;Assign Wisconsin Directory.
? "Mapping Wisconsin Directory for Wisconsin Users"
If INGROUP("Wisconsin")
Use W: /delete /persistent
Use W: "\\kramer\wisconsin"
EndIf

;; Teleform Drive Mapping.

;;Assign Teleform Directory.
? "Mapping Teleform Directory for Teleform Users"
If INGROUP("Teleform")
Use U: /delete /persistent
Use U: "\\susan\teleform"
EndIf



Thanks,

Chad

{edit MCA: code-tags}


Edited by MCA (2004-01-12 10:26 PM)

Top
#111617 - 2004-01-12 08:50 PM Re: Drives not always mapping??
Co Offline
MM club member
***

Registered: 2000-11-20
Posts: 1342
Loc: NL
MMM, Strange problem....

First of all...
What OS's are we talking about?
Which version of Kixtart do you use?
Do you have this problem since you created your script or did the problem starts after you changed something? (in the script or OS)
Did you run the script in debug mode?

Try something like this for searching the problem...
Code:
 

If INGROUP("FinanceFull")
Use Y: /delete /persistent
Use Y: "\\babu\freedom"
? "Group: FinanceFull - Error: " @error
EndIf



Does your script starts synchrononously or asynchronously?



Ps. place The next time your code between code /code. Click Code at the bottom of the page (Instant UBB Code)


Edited by Co (2004-01-12 09:53 PM)
_________________________
Co


Top
#111618 - 2004-01-12 09:14 PM Re: Drives not always mapping??
Sealeopard Offline
KiX Master
*****

Registered: 2001-04-25
Posts: 11165
Loc: Boston, MA, USA
You could also consolidate all these IF-ENDIF that map the same drive letter into more concise SELECT-CASE-ENDSELECT statements.
_________________________
There are two types of vessels, submarines and targets.

Top
#111619 - 2004-01-12 10:36 PM Re: Drives not always mapping?
MCA Offline
KiX Supporter
*****

Registered: 2000-04-28
Posts: 5152
Loc: Netherlands, EU
Dear,

Pur question: which drive isn't mapped always?

We have add some debugging code it with out kixstrip.
After completion the information will be written to the file %tmp%\kixdebug/txt
Code:

;CLS
$_debug_kix_info=Ltrim(Rtrim(Substr(@kix,InStr(@kix,'.')-1,Len(@kix)-InStr(@kix,'.')+2)))
IF (InStr("-3.0x-3.1x-3.2x-3.3x-","-"+Substr($_debug_kix_info,1,3)+"x-") <> 0)
IF MessageBox("sorry, your kixtart "+$_debug_kix_info+" release is too old."+" at least use kixtart 3.4x release."+Chr(13)+Chr(10)+Chr(13)+Chr(10)+" please upgrade.","KiXtart "+@kix+" info",4112,300)
ENDIF
EXIT
ENDIF
COLOR c+/n
;AT (1,1) " "

$_debug_file="kixdebug.txt" ; - %tmp% directory -
IF (Len($_debug_file) <> 0)
IF (Substr("%tmp%",Len("%tmp%"),1) = "\")
$_debug_file="%tmp%"+$_debug_file
ELSE
$_debug_file="%tmp%\"+$_debug_file
ENDIF
ENDIF
;$_debug_file="c:\kixdebug.txt"
IF RedirectOutput($_debug_file)
ENDIF

? "-"+Lcase(@day)+" "+@date+" "+@time+"- kixtart "+$_debug_kix_info+"/kixstrip 4.03e script starting"
IF (Val(Substr($_debug_kix_info,1,1)) >= 4)
IF (Len(@scriptname) <> 0)
" ("+Lcase(@scriptname)+")"
ENDIF
ENDIF
? "-"
IF ("$_debug_already_starting" <> "yes")
? "-curdir: "+Lcase(@curdir)
? "-scriptdir: "+Lcase(@scriptdir)
IF (Val(Substr($_debug_kix_info,1,1)+Substr($_debug_kix_info,3,2)) >= 422)
? "-scriptexe: "+Lcase(@scriptexe)+" (pid "+@pid+")"
ENDIF
IF (Val(Substr($_debug_kix_info,1,1)+Substr($_debug_kix_info,3,1)) >= 41)
? "-scriptname: "+Lcase(@scriptname)
ENDIF
? "-startdir: "+Lcase(@startdir)
? "-"
? "-userid/wuserid: "+Lcase(@userid)+"/"+Lcase(@wuserid)
? "-user priv: "+Lcase(@priv)
IF (Val(Substr($_debug_kix_info,1,1)) >= 4)
? "-version: inwin="+@inwin+"/dos="+@dos+"/productsuite="+@productsuite+"/producttype="+@producttype+"/csd="+Ltrim(Rtrim(@csd))
ELSE
? "-version: inwin="+@inwin+"/dos="+@dos
ENDIF
? "-"
IF (Val(Substr($_debug_kix_info,1,1)+Substr($_debug_kix_info,3,1)) >= 41)
? "-"+@cpu+" (memory "+Val(MemorySize()+1)+" MB)"
? "-"
ENDIF
ENDIF

$_debug_temp_name="" ; -format: yyyymmdd_hhmmss.sss_999 scriptname-
IF (Val(Substr($_debug_kix_info,1,1)+Substr($_debug_kix_info,3,1)) >= 36)
IF (Val(Substr($_debug_kix_info,1,1)) >= 4)
$_debug_temp_name=@msecs
SELECT
CASE (Len($_debug_temp_name) = 1)
$_debug_temp_name="00"+$_debug_temp_name
CASE (Len($_debug_temp_name) = 2)
$_debug_temp_name="0"+$_debug_temp_name
ENDSELECT
$_debug_temp_name="."+$_debug_temp_name
IF Srnd(@msecs)
ENDIF
SLEEP 0.050
ELSE
IF Srnd((-1)*32767/(Substr(@time,7,2)+1))
ENDIF
SLEEP 1
ENDIF
$_debug_temp_name=Substr(@date,1,4)+Substr(@date,6,2)+Substr(@date,9,2)+"_"+Substr(@time,1,2)+Substr(@time,4,2)+Substr(@time,7,2)+$_debug_temp_name+"_"+Rnd()
IF (Len($_debug_temp_name) < 25)
$_debug_temp_name=Substr($_debug_temp_name+" ",1,25)
ENDIF
IF (Val(Substr($_debug_kix_info,1,1)+Substr($_debug_kix_info,3,1)) >= 41)
IF (Len(@scriptname) < 12)
$_debug_temp_name=$_debug_temp_name+" "+Substr(@scriptname+" ",1,12)
ELSE
$_debug_temp_name=$_debug_temp_name+" "+@scriptname
ENDIF
ENDIF
ENDIF

IF ("$_debug_already_starting" <> "yes")
? "-debug file: "+$_debug_file
? "-debug name: "+Lcase($_debug_temp_name)
ELSE
IF (Len($_debug_temp_name) <> 0)
? "-debug: "+Ltrim(Rtrim(Lcase($_debug_temp_name)))+" -> "+$_debug_file
ELSE
? "-debug-file: "+$_debug_file
ENDIF
ENDIF

IF (Val(Substr($_debug_kix_info,1,1)+Substr($_debug_kix_info,3,1)) < 36)
GOTO _debug_starting_point
ENDIF
DIM $_debug_name ; -create local variable-
:_debug_starting_point
$_debug_name=Lcase($_debug_temp_name)
$_debug_already_starting="yes"
? "-"
?"----- start-"+@time+"-"+$_debug_name+"- @error @serror"?

?"- 1-"+@time+"-"+$_debug_name+"- @error @serror"? ;; All domain users get the following directories mapped - P: is the Company
?"- 2-"+@time+"-"+$_debug_name+"- @error @serror"? ;; Public directoy and Z: is the Users personal directory.
?"- 3-"+@time+"-"+$_debug_name+"- @error @serror"?
?"- 4-"+@time+"-"+$_debug_name+"- @error @serror"? ;; Assign the public and user directories.
?"- 5-"+@time+"-"+$_debug_name+"- @error @serror"? ? "Mapping Public Directory for Domain Users"
?"- 6-"+@time+"-"+$_debug_name+"- @error @serror"? ? "Mapping Users Directory for Domain Users"
?"- 7-"+@time+"-"+$_debug_name+"- @error @serror"? IF INGROUP("Domain Users")
?"- 8-"+@time+"-"+$_debug_name+"- @error @serror"? USE P: /delete /persistent
?"- 9-"+@time+"-"+$_debug_name+"- @error @serror"? USE P: "\\kramer\public"
?"- 10-"+@time+"-"+$_debug_name+"- @error @serror"? USE Z: /delete /persistent
?"- 11-"+@time+"-"+$_debug_name+"- @error @serror"? USE Z: "\\kramer\%username%"
?"- 12-"+@time+"-"+$_debug_name+"- @error @serror"? ENDIF
?"- 13-"+@time+"-"+$_debug_name+"- @error @serror"?
?"- 14-"+@time+"-"+$_debug_name+"- @error @serror"? ;; The Track-It inventory needs to be configured to run automatically upon login.
?"- 15-"+@time+"-"+$_debug_name+"- @error @serror"? ;; This section is disabled because we have to figure out how to set the TIA
?"- 16-"+@time+"-"+$_debug_name+"- @error @serror"? ;; variable for the computer name and workstation ID.
?"- 17-"+@time+"-"+$_debug_name+"- @error @serror"?
?"- 18-"+@time+"-"+$_debug_name+"- @error @serror"? ;; Disabled - 12/16/2003
?"- 19-"+@time+"-"+$_debug_name+"- @error @serror"? ;; Start the Track-IT! automatic inventory program
?"- 20-"+@time+"-"+$_debug_name+"- @error @serror"? ;; ? "Mapping Track-IT! Directory for Domain Users"
?"- 21-"+@time+"-"+$_debug_name+"- @error @serror"? ;; If INGROUP("Domain Users")
?"- 22-"+@time+"-"+$_debug_name+"- @error @serror"? ;; Use Y: /delete /persistent
?"- 23-"+@time+"-"+$_debug_name+"- @error @serror"? ;; Use Y: "\\babu\auditshare"
?"- 24-"+@time+"-"+$_debug_name+"- @error @serror"? ;; run "y:\audit32.exe"
?"- 25-"+@time+"-"+$_debug_name+"- @error @serror"? ;; EndIF
?"- 26-"+@time+"-"+$_debug_name+"- @error @serror"?
?"- 27-"+@time+"-"+$_debug_name+"- @error @serror"? ;; AASCIF - AASCIF Web Support Mappings.
?"- 28-"+@time+"-"+$_debug_name+"- @error @serror"?
?"- 29-"+@time+"-"+$_debug_name+"- @error @serror"? ;; Assign WWW Directory for AASCIFWebSupport Users.
?"- 30-"+@time+"-"+$_debug_name+"- @error @serror"? ? "Mapping WWW Directory for AASCIFWebSupport Users"
?"- 31-"+@time+"-"+$_debug_name+"- @error @serror"? IF INGROUP("AASCIFWebSupport")
?"- 32-"+@time+"-"+$_debug_name+"- @error @serror"? USE R: /delete /persistent
?"- 33-"+@time+"-"+$_debug_name+"- @error @serror"? USE R: "\\babu\www"
?"- 34-"+@time+"-"+$_debug_name+"- @error @serror"? ENDIF
?"- 35-"+@time+"-"+$_debug_name+"- @error @serror"?
?"- 36-"+@time+"-"+$_debug_name+"- @error @serror"? ;; Administration - Executive Services Department Mappings.
?"- 37-"+@time+"-"+$_debug_name+"- @error @serror"?
?"- 38-"+@time+"-"+$_debug_name+"- @error @serror"? ;; Assign Department (admin) directory for ExecServ Users.
?"- 39-"+@time+"-"+$_debug_name+"- @error @serror"? ? "Mapping Admin Directory for Executive Services Users"
?"- 40-"+@time+"-"+$_debug_name+"- @error @serror"? IF INGROUP("ExecServ")
?"- 41-"+@time+"-"+$_debug_name+"- @error @serror"? USE F: /delete /persistent
?"- 42-"+@time+"-"+$_debug_name+"- @error @serror"? USE F: "\\kramer\admin"
?"- 43-"+@time+"-"+$_debug_name+"- @error @serror"? ENDIF
?"- 44-"+@time+"-"+$_debug_name+"- @error @serror"?
?"- 45-"+@time+"-"+$_debug_name+"- @error @serror"? ;; Administration - Executive Services Admin Mappings.
?"- 46-"+@time+"-"+$_debug_name+"- @error @serror"?
?"- 47-"+@time+"-"+$_debug_name+"- @error @serror"? ;; Assign Drives for ExecServAdmin Users.
?"- 48-"+@time+"-"+$_debug_name+"- @error @serror"? ? "Mapping Drives for ExecServAdmin Users"
?"- 49-"+@time+"-"+$_debug_name+"- @error @serror"? IF INGROUP("ExecServAdmin")
?"- 50-"+@time+"-"+$_debug_name+"- @error @serror"? USE I: /delete /persistent
?"- 51-"+@time+"-"+$_debug_name+"- @error @serror"? USE I: "\\kramer\finance"
?"- 52-"+@time+"-"+$_debug_name+"- @error @serror"? USE J: /delete /persistent
?"- 53-"+@time+"-"+$_debug_name+"- @error @serror"? USE J: "\\kramer\jeanh"
?"- 54-"+@time+"-"+$_debug_name+"- @error @serror"? USE K: /delete /persistent
?"- 55-"+@time+"-"+$_debug_name+"- @error @serror"? USE K: "\\kramer\claims"
?"- 56-"+@time+"-"+$_debug_name+"- @error @serror"? ENDIF
?"- 57-"+@time+"-"+$_debug_name+"- @error @serror"?
?"- 58-"+@time+"-"+$_debug_name+"- @error @serror"? ;; Administration - HR Mappings.
?"- 59-"+@time+"-"+$_debug_name+"- @error @serror"?
?"- 60-"+@time+"-"+$_debug_name+"- @error @serror"? ;; Assign Department (admin) directory for HRUsers.
?"- 61-"+@time+"-"+$_debug_name+"- @error @serror"? ? "Mapping Admin Directory for HR Users"
?"- 62-"+@time+"-"+$_debug_name+"- @error @serror"? IF INGROUP("HRUsers")
?"- 63-"+@time+"-"+$_debug_name+"- @error @serror"? USE F: /delete /persistent
?"- 64-"+@time+"-"+$_debug_name+"- @error @serror"? USE F: "\\kramer\admin"
?"- 65-"+@time+"-"+$_debug_name+"- @error @serror"? ENDIF
?"- 66-"+@time+"-"+$_debug_name+"- @error @serror"?
?"- 67-"+@time+"-"+$_debug_name+"- @error @serror"? ? "Mapping HRvantage Directory for HRvantage Users"
?"- 68-"+@time+"-"+$_debug_name+"- @error @serror"? IF INGROUP("HRvantage")
?"- 69-"+@time+"-"+$_debug_name+"- @error @serror"? USE H: /delete /persistent
?"- 70-"+@time+"-"+$_debug_name+"- @error @serror"? USE H: "\\kramer\hrvantage"
?"- 71-"+@time+"-"+$_debug_name+"- @error @serror"? ENDIF
?"- 72-"+@time+"-"+$_debug_name+"- @error @serror"?
?"- 73-"+@time+"-"+$_debug_name+"- @error @serror"? ? "Mapping Paychex Directory for HRDirector, HRAssistant Users"
?"- 74-"+@time+"-"+$_debug_name+"- @error @serror"? IF INGROUP("HRDirector", "HRAssistant")
?"- 75-"+@time+"-"+$_debug_name+"- @error @serror"? USE G: /delete /persistent
?"- 76-"+@time+"-"+$_debug_name+"- @error @serror"? USE G: "\\kramer\admin\paychex"
?"- 77-"+@time+"-"+$_debug_name+"- @error @serror"? ENDIF
?"- 78-"+@time+"-"+$_debug_name+"- @error @serror"?
?"- 79-"+@time+"-"+$_debug_name+"- @error @serror"? ;; Auditing - Auditing Userm Mappings.
?"- 80-"+@time+"-"+$_debug_name+"- @error @serror"?
?"- 81-"+@time+"-"+$_debug_name+"- @error @serror"? ;; Assign Policydocs and Insops Directories.
?"- 82-"+@time+"-"+$_debug_name+"- @error @serror"? ? "Mapping Policydocs Directory for Auditing Users"
?"- 83-"+@time+"-"+$_debug_name+"- @error @serror"? ? "Mapping Insops Directory for Auditing Users"
?"- 84-"+@time+"-"+$_debug_name+"- @error @serror"? IF INGROUP("AuditUsers")
?"- 85-"+@time+"-"+$_debug_name+"- @error @serror"? USE F: /delete /persistent
?"- 86-"+@time+"-"+$_debug_name+"- @error @serror"? USE F: "\\kramer\policydocs"
?"- 87-"+@time+"-"+$_debug_name+"- @error @serror"? USE G: /delete /persistent
?"- 88-"+@time+"-"+$_debug_name+"- @error @serror"? USE G: "\\kramer\insops"
?"- 89-"+@time+"-"+$_debug_name+"- @error @serror"? ENDIF
?"- 90-"+@time+"-"+$_debug_name+"- @error @serror"?
?"- 91-"+@time+"-"+$_debug_name+"- @error @serror"? ;; Claims - Claims Reps Mappings
?"- 92-"+@time+"-"+$_debug_name+"- @error @serror"?
?"- 93-"+@time+"-"+$_debug_name+"- @error @serror"? ;; Assign Department (claims) Directory.
?"- 94-"+@time+"-"+$_debug_name+"- @error @serror"? ? "Mapping Claims Directory for Claims Reps Users"
?"- 95-"+@time+"-"+$_debug_name+"- @error @serror"? IF INGROUP("ClaimsUsers")
?"- 96-"+@time+"-"+$_debug_name+"- @error @serror"? USE F: /delete /persistent
?"- 97-"+@time+"-"+$_debug_name+"- @error @serror"? USE F: "\\kramer\claims"
?"- 98-"+@time+"-"+$_debug_name+"- @error @serror"? ENDIF
?"- 99-"+@time+"-"+$_debug_name+"- @error @serror"?
?"- 100-"+@time+"-"+$_debug_name+"- @error @serror"? ;; Claims - Claims Supervisor Mappings
?"- 101-"+@time+"-"+$_debug_name+"- @error @serror"?
?"- 102-"+@time+"-"+$_debug_name+"- @error @serror"? ;; Assign Department (claims) Directory.
?"- 103-"+@time+"-"+$_debug_name+"- @error @serror"? ? "Mapping Claims Directory for Claims Supervisors"
?"- 104-"+@time+"-"+$_debug_name+"- @error @serror"? IF INGROUP("ClaimsSupervisors")
?"- 105-"+@time+"-"+$_debug_name+"- @error @serror"? USE F: /delete /persistent
?"- 106-"+@time+"-"+$_debug_name+"- @error @serror"? USE F: "\\kramer\claims"
?"- 107-"+@time+"-"+$_debug_name+"- @error @serror"? ENDIF
?"- 108-"+@time+"-"+$_debug_name+"- @error @serror"?
?"- 109-"+@time+"-"+$_debug_name+"- @error @serror"? ;; Communications - Communications Mappings
?"- 110-"+@time+"-"+$_debug_name+"- @error @serror"?
?"- 111-"+@time+"-"+$_debug_name+"- @error @serror"? ;; Assign Department (comm) Directory.
?"- 112-"+@time+"-"+$_debug_name+"- @error @serror"? ? "Mapping Comm Directory for Communications Users"
?"- 113-"+@time+"-"+$_debug_name+"- @error @serror"? $group = "Comm"
?"- 114-"+@time+"-"+$_debug_name+"- @error @serror"? IF INGROUP("$Group")
?"- 115-"+@time+"-"+$_debug_name+"- @error @serror"? USE F: /delete /persistent
?"- 116-"+@time+"-"+$_debug_name+"- @error @serror"? USE F: "\\keith\comm"
?"- 117-"+@time+"-"+$_debug_name+"- @error @serror"? ENDIF
?"- 118-"+@time+"-"+$_debug_name+"- @error @serror"?
?"- 119-"+@time+"-"+$_debug_name+"- @error @serror"? ;; Assign Insops Directory.
?"- 120-"+@time+"-"+$_debug_name+"- @error @serror"? ? "Mapping Insops Directory for Communications Admin"
?"- 121-"+@time+"-"+$_debug_name+"- @error @serror"? IF INGROUP("CommAdmin")
?"- 122-"+@time+"-"+$_debug_name+"- @error @serror"? USE G: /delete /persistent
?"- 123-"+@time+"-"+$_debug_name+"- @error @serror"? USE G: "\\kramer\insops"
?"- 124-"+@time+"-"+$_debug_name+"- @error @serror"? ENDIF
?"- 125-"+@time+"-"+$_debug_name+"- @error @serror"?
?"- 126-"+@time+"-"+$_debug_name+"- @error @serror"? ;; Comp Rehab - Comp Rehab Mappings
?"- 127-"+@time+"-"+$_debug_name+"- @error @serror"?
?"- 128-"+@time+"-"+$_debug_name+"- @error @serror"? ;;Assign Department (comprehab) Directory.
?"- 129-"+@time+"-"+$_debug_name+"- @error @serror"? ? "Mapping CompRehap Directory for Comp Rehab Users"
?"- 130-"+@time+"-"+$_debug_name+"- @error @serror"? IF INGROUP("CRUsers")
?"- 131-"+@time+"-"+$_debug_name+"- @error @serror"? USE F: /delete /persistent
?"- 132-"+@time+"-"+$_debug_name+"- @error @serror"? USE F: "\\kramer\comprehab"
?"- 133-"+@time+"-"+$_debug_name+"- @error @serror"? ENDIF
?"- 134-"+@time+"-"+$_debug_name+"- @error @serror"?
?"- 135-"+@time+"-"+$_debug_name+"- @error @serror"? ;; Comp Cost - (Bill Review) User Mappings
?"- 136-"+@time+"-"+$_debug_name+"- @error @serror"?
?"- 137-"+@time+"-"+$_debug_name+"- @error @serror"? ;; Assign Department (compcost) Directory.
?"- 138-"+@time+"-"+$_debug_name+"- @error @serror"? ? "Mapping CompCost Directory for Comp Cost Bill Review Users"
?"- 139-"+@time+"-"+$_debug_name+"- @error @serror"? IF INGROUP("ccbillreview")
?"- 140-"+@time+"-"+$_debug_name+"- @error @serror"? USE F: /delete /persistent
?"- 141-"+@time+"-"+$_debug_name+"- @error @serror"? USE F: "\\kramer\compcost"
?"- 142-"+@time+"-"+$_debug_name+"- @error @serror"? ENDIF
?"- 143-"+@time+"-"+$_debug_name+"- @error @serror"?
?"- 144-"+@time+"-"+$_debug_name+"- @error @serror"? ;; Comp Cost - Comp Cost Supervisor Mappings
?"- 145-"+@time+"-"+$_debug_name+"- @error @serror"?
?"- 146-"+@time+"-"+$_debug_name+"- @error @serror"? ;;Assign Compcost and Claims Directories.
?"- 147-"+@time+"-"+$_debug_name+"- @error @serror"? ? "Mapping Compcost Directory for Comp Cost Supervisor"
?"- 148-"+@time+"-"+$_debug_name+"- @error @serror"? ? "Mapping Claims Directory for Comp Cost Supervisor"
?"- 149-"+@time+"-"+$_debug_name+"- @error @serror"? IF INGROUP("CCSupervisor")
?"- 150-"+@time+"-"+$_debug_name+"- @error @serror"? USE F: /delete /persistent
?"- 151-"+@time+"-"+$_debug_name+"- @error @serror"? USE F: "\\kramer\compcost"
?"- 152-"+@time+"-"+$_debug_name+"- @error @serror"? USE G: /delete /persistent
?"- 153-"+@time+"-"+$_debug_name+"- @error @serror"? USE G: "\\kramer\claims"
?"- 154-"+@time+"-"+$_debug_name+"- @error @serror"? ENDIF
?"- 155-"+@time+"-"+$_debug_name+"- @error @serror"?
?"- 156-"+@time+"-"+$_debug_name+"- @error @serror"? ;; Comp Cost - Comp Cost CCShare Mapping.
?"- 157-"+@time+"-"+$_debug_name+"- @error @serror"?
?"- 158-"+@time+"-"+$_debug_name+"- @error @serror"? ;; Assign CCShare Directory.
?"- 159-"+@time+"-"+$_debug_name+"- @error @serror"? ? "Mapping CCshare Directory for CCShare Users"
?"- 160-"+@time+"-"+$_debug_name+"- @error @serror"? IF INGROUP("CCShareUsers")
?"- 161-"+@time+"-"+$_debug_name+"- @error @serror"? USE L: /delete /persistent
?"- 162-"+@time+"-"+$_debug_name+"- @error @serror"? USE L: "\\kramer\ccshare"
?"- 163-"+@time+"-"+$_debug_name+"- @error @serror"? ENDIF
?"- 164-"+@time+"-"+$_debug_name+"- @error @serror"?
?"- 165-"+@time+"-"+$_debug_name+"- @error @serror"? ;; Comp Cost - Comp Cost Secondary Mapping. This mapping is for users that need
?"- 166-"+@time+"-"+$_debug_name+"- @error @serror"? ;; access to compcost, but are in different departments.
?"- 167-"+@time+"-"+$_debug_name+"- @error @serror"?
?"- 168-"+@time+"-"+$_debug_name+"- @error @serror"? ;; Assign compcost directory to users in different departments.
?"- 169-"+@time+"-"+$_debug_name+"- @error @serror"? ? "Mapping Compcost Directory for Users in Different Departments"
?"- 170-"+@time+"-"+$_debug_name+"- @error @serror"? IF INGROUP("FinanceVP", "ExecServAdmin", "ClaimsVP", "ClaimsDirector")
?"- 171-"+@time+"-"+$_debug_name+"- @error @serror"? USE H: /delete /persistent
?"- 172-"+@time+"-"+$_debug_name+"- @error @serror"? USE H: "\\kramer\compcost"
?"- 173-"+@time+"-"+$_debug_name+"- @error @serror"? ENDIF
?"- 174-"+@time+"-"+$_debug_name+"- @error @serror"?
?"- 175-"+@time+"-"+$_debug_name+"- @error @serror"? ;; Finance - Finance Department Mappings.
?"- 176-"+@time+"-"+$_debug_name+"- @error @serror"?
?"- 177-"+@time+"-"+$_debug_name+"- @error @serror"? ;; Assign Department (finance) Directory.
?"- 178-"+@time+"-"+$_debug_name+"- @error @serror"? ? "Mapping Finance Directory for Finance Users"
?"- 179-"+@time+"-"+$_debug_name+"- @error @serror"? IF INGROUP("Finance")
?"- 180-"+@time+"-"+$_debug_name+"- @error @serror"? USE F: /delete /persistent
?"- 181-"+@time+"-"+$_debug_name+"- @error @serror"? USE F: "\\kramer\finance"
?"- 182-"+@time+"-"+$_debug_name+"- @error @serror"? ENDIF
?"- 183-"+@time+"-"+$_debug_name+"- @error @serror"?
?"- 184-"+@time+"-"+$_debug_name+"- @error @serror"? ;; Assign Freedom Directory.
?"- 185-"+@time+"-"+$_debug_name+"- @error @serror"? ? "Mapping Freedom Directory for FreedomFull Users"
?"- 186-"+@time+"-"+$_debug_name+"- @error @serror"? IF INGROUP("FinanceFull")
?"- 187-"+@time+"-"+$_debug_name+"- @error @serror"? USE Y: /delete /persistent
?"- 188-"+@time+"-"+$_debug_name+"- @error @serror"? USE Y: "\\babu\freedom"
?"- 189-"+@time+"-"+$_debug_name+"- @error @serror"? ENDIF
?"- 190-"+@time+"-"+$_debug_name+"- @error @serror"?
?"- 191-"+@time+"-"+$_debug_name+"- @error @serror"? ;;IS - IS Department Mappings.
?"- 192-"+@time+"-"+$_debug_name+"- @error @serror"?
?"- 193-"+@time+"-"+$_debug_name+"- @error @serror"? ;; Assign Department (IS) Directory.
?"- 194-"+@time+"-"+$_debug_name+"- @error @serror"? ? "Mapping IS Directory for IS Users"
?"- 195-"+@time+"-"+$_debug_name+"- @error @serror"? IF INGROUP("IS")
?"- 196-"+@time+"-"+$_debug_name+"- @error @serror"? USE F: /delete /persistent
?"- 197-"+@time+"-"+$_debug_name+"- @error @serror"? USE F: "\\kramer\is"
?"- 198-"+@time+"-"+$_debug_name+"- @error @serror"? USE Y: /delete /persistent
?"- 199-"+@time+"-"+$_debug_name+"- @error @serror"? ENDIF
?"- 200-"+@time+"-"+$_debug_name+"- @error @serror"?
?"- 201-"+@time+"-"+$_debug_name+"- @error @serror"? ;; Assign Drivers Directory.
?"- 202-"+@time+"-"+$_debug_name+"- @error @serror"? ? "Mapping Drivers Directory for ISSupport Users"
?"- 203-"+@time+"-"+$_debug_name+"- @error @serror"? IF INGROUP("ISSupport")
?"- 204-"+@time+"-"+$_debug_name+"- @error @serror"? USE I: /delete /persistent
?"- 205-"+@time+"-"+$_debug_name+"- @error @serror"? USE I: "\\kramer\drivers"
?"- 206-"+@time+"-"+$_debug_name+"- @error @serror"? ENDIF
?"- 207-"+@time+"-"+$_debug_name+"- @error @serror"?
?"- 208-"+@time+"-"+$_debug_name+"- @error @serror"? ;; Assign Trackit and Paychex Directories.
?"- 209-"+@time+"-"+$_debug_name+"- @error @serror"? ? "Mapping Trackit Directory for ISVP"
?"- 210-"+@time+"-"+$_debug_name+"- @error @serror"? ? "Mapping Paychex Directory for ISVP"
?"- 211-"+@time+"-"+$_debug_name+"- @error @serror"? IF INGROUP("ISVP")
?"- 212-"+@time+"-"+$_debug_name+"- @error @serror"? USE G: /delete /persistent
?"- 213-"+@time+"-"+$_debug_name+"- @error @serror"? USE G: "\\kramer\admin\paychex"
?"- 214-"+@time+"-"+$_debug_name+"- @error @serror"? USE S: /delete /persistent
?"- 215-"+@time+"-"+$_debug_name+"- @error @serror"? USE S: "\\babu\trackit"
?"- 216-"+@time+"-"+$_debug_name+"- @error @serror"? ENDIF
?"- 217-"+@time+"-"+$_debug_name+"- @error @serror"?
?"- 218-"+@time+"-"+$_debug_name+"- @error @serror"? ;; Loss Prevention - Loss Prevention Department Mappings.
?"- 219-"+@time+"-"+$_debug_name+"- @error @serror"?
?"- 220-"+@time+"-"+$_debug_name+"- @error @serror"? ;; Assign Policydocs and Insops Directories.
?"- 221-"+@time+"-"+$_debug_name+"- @error @serror"? ? "Mapping Policydocs Directory for LP Users"
?"- 222-"+@time+"-"+$_debug_name+"- @error @serror"? ? "Mapping Insops directories LP Users"
?"- 223-"+@time+"-"+$_debug_name+"- @error @serror"? IF INGROUP("LPUsers")
?"- 224-"+@time+"-"+$_debug_name+"- @error @serror"? USE F: /delete /persistent
?"- 225-"+@time+"-"+$_debug_name+"- @error @serror"? USE F: "\\kramer\policydocs"
?"- 226-"+@time+"-"+$_debug_name+"- @error @serror"? USE G: /delete /persistent
?"- 227-"+@time+"-"+$_debug_name+"- @error @serror"? USE G: "\\kramer\insops"
?"- 228-"+@time+"-"+$_debug_name+"- @error @serror"? ENDIF
?"- 229-"+@time+"-"+$_debug_name+"- @error @serror"?
?"- 230-"+@time+"-"+$_debug_name+"- @error @serror"? ;; LSA - LSA Department Mappings.
?"- 231-"+@time+"-"+$_debug_name+"- @error @serror"?
?"- 232-"+@time+"-"+$_debug_name+"- @error @serror"? ;; Assign Department (legal) Directory.
?"- 233-"+@time+"-"+$_debug_name+"- @error @serror"? ? "Mapping Legal Directory for LSA Users"
?"- 234-"+@time+"-"+$_debug_name+"- @error @serror"? IF INGROUP("Legal")
?"- 235-"+@time+"-"+$_debug_name+"- @error @serror"? USE F: /delete /persistent
?"- 236-"+@time+"-"+$_debug_name+"- @error @serror"? USE F: "\\kramer\legal"
?"- 237-"+@time+"-"+$_debug_name+"- @error @serror"? ENDIF
?"- 238-"+@time+"-"+$_debug_name+"- @error @serror"?
?"- 239-"+@time+"-"+$_debug_name+"- @error @serror"? ;; Policy Holder Services Mappings.
?"- 240-"+@time+"-"+$_debug_name+"- @error @serror"?
?"- 241-"+@time+"-"+$_debug_name+"- @error @serror"? ;; Assign Policydocs and Insops Directories.
?"- 242-"+@time+"-"+$_debug_name+"- @error @serror"? ? "Mapping Policydocs Directory for PHS Users"
?"- 243-"+@time+"-"+$_debug_name+"- @error @serror"? ? "Mapping Insops directories for PHS Users"
?"- 244-"+@time+"-"+$_debug_name+"- @error @serror"? IF INGROUP("PHSUsers")
?"- 245-"+@time+"-"+$_debug_name+"- @error @serror"? USE F: /delete /persistent
?"- 246-"+@time+"-"+$_debug_name+"- @error @serror"? USE F: "\\kramer\policydocs"
?"- 247-"+@time+"-"+$_debug_name+"- @error @serror"? USE G: /delete /persistent
?"- 248-"+@time+"-"+$_debug_name+"- @error @serror"? USE G: "\\kramer\insops"
?"- 249-"+@time+"-"+$_debug_name+"- @error @serror"? ENDIF
?"- 250-"+@time+"-"+$_debug_name+"- @error @serror"?
?"- 251-"+@time+"-"+$_debug_name+"- @error @serror"? ;; Sales - Sales Department Mappings.
?"- 252-"+@time+"-"+$_debug_name+"- @error @serror"?
?"- 253-"+@time+"-"+$_debug_name+"- @error @serror"? ;; Assign Policydocs and Insops Directories.
?"- 254-"+@time+"-"+$_debug_name+"- @error @serror"? ? "Mapping Policydocs Directory for Sales Users"
?"- 255-"+@time+"-"+$_debug_name+"- @error @serror"? ? "Mapping Insops directories for Sales Users"
?"- 256-"+@time+"-"+$_debug_name+"- @error @serror"? IF INGROUP("SalesUsers")
?"- 257-"+@time+"-"+$_debug_name+"- @error @serror"? USE F: /delete /persistent
?"- 258-"+@time+"-"+$_debug_name+"- @error @serror"? USE F: "\\kramer\policydocs"
?"- 259-"+@time+"-"+$_debug_name+"- @error @serror"? USE G: /delete /persistent
?"- 260-"+@time+"-"+$_debug_name+"- @error @serror"? USE G: "\\kramer\insops"
?"- 261-"+@time+"-"+$_debug_name+"- @error @serror"? ENDIF
?"- 262-"+@time+"-"+$_debug_name+"- @error @serror"?
?"- 263-"+@time+"-"+$_debug_name+"- @error @serror"?
?"- 264-"+@time+"-"+$_debug_name+"- @error @serror"? ;; Training - this will be setup at a later time.
?"- 265-"+@time+"-"+$_debug_name+"- @error @serror"?
?"- 266-"+@time+"-"+$_debug_name+"- @error @serror"? ;; Underwriting - Underwriting Deparment Mappings.
?"- 267-"+@time+"-"+$_debug_name+"- @error @serror"?
?"- 268-"+@time+"-"+$_debug_name+"- @error @serror"? ;; Assign Policydocs and Insops Directories.
?"- 269-"+@time+"-"+$_debug_name+"- @error @serror"? ? "Mapping Policydocs Directory for UW Users"
?"- 270-"+@time+"-"+$_debug_name+"- @error @serror"? ? "Mapping Insops Directory for UW Users"
?"- 271-"+@time+"-"+$_debug_name+"- @error @serror"? IF INGROUP("UWUsers")
?"- 272-"+@time+"-"+$_debug_name+"- @error @serror"? USE F: /delete /persistent
?"- 273-"+@time+"-"+$_debug_name+"- @error @serror"? USE F: "\\kramer\policydocs"
?"- 274-"+@time+"-"+$_debug_name+"- @error @serror"? USE G: /delete /persistent
?"- 275-"+@time+"-"+$_debug_name+"- @error @serror"? USE G: "\\kramer\insops"
?"- 276-"+@time+"-"+$_debug_name+"- @error @serror"? USE H: /delete /persistent
?"- 277-"+@time+"-"+$_debug_name+"- @error @serror"? USE H: "\\kramer\underwritingdoc"
?"- 278-"+@time+"-"+$_debug_name+"- @error @serror"? ENDIF
?"- 279-"+@time+"-"+$_debug_name+"- @error @serror"?
?"- 280-"+@time+"-"+$_debug_name+"- @error @serror"? ;; Supervisor Mappings.
?"- 281-"+@time+"-"+$_debug_name+"- @error @serror"?
?"- 282-"+@time+"-"+$_debug_name+"- @error @serror"? ;; Assign Supervisor Directory.
?"- 283-"+@time+"-"+$_debug_name+"- @error @serror"? ? "Mapping Supervisors Directory for Supervisors"
?"- 284-"+@time+"-"+$_debug_name+"- @error @serror"? IF INGROUP("ClaimsSupervisors")
?"- 285-"+@time+"-"+$_debug_name+"- @error @serror"? USE S: /delete /persistent
?"- 286-"+@time+"-"+$_debug_name+"- @error @serror"? USE S: "\\kramer\supervisors"
?"- 287-"+@time+"-"+$_debug_name+"- @error @serror"? IF INGROUP("ClaimsDirector")
?"- 288-"+@time+"-"+$_debug_name+"- @error @serror"? USE O: /delete /persistent
?"- 289-"+@time+"-"+$_debug_name+"- @error @serror"? USE O: "\\kramer\claimssupervisors"
?"- 290-"+@time+"-"+$_debug_name+"- @error @serror"? ENDIF
?"- 291-"+@time+"-"+$_debug_name+"- @error @serror"? ENDIF
?"- 292-"+@time+"-"+$_debug_name+"- @error @serror"?
?"- 293-"+@time+"-"+$_debug_name+"- @error @serror"? ;; Check Image Drive Mapping.
?"- 294-"+@time+"-"+$_debug_name+"- @error @serror"?
?"- 295-"+@time+"-"+$_debug_name+"- @error @serror"? ;; Assign CheckImage Directory.
?"- 296-"+@time+"-"+$_debug_name+"- @error @serror"? ? "Mapping CheckImage Directory for CheckImage Users"
?"- 297-"+@time+"-"+$_debug_name+"- @error @serror"? IF INGROUP("CheckImage", "CheckImageAdmin")
?"- 298-"+@time+"-"+$_debug_name+"- @error @serror"? USE K: /delete /persistent
?"- 299-"+@time+"-"+$_debug_name+"- @error @serror"? USE K: "\\kramer\check"
?"- 300-"+@time+"-"+$_debug_name+"- @error @serror"? ENDIF
?"- 301-"+@time+"-"+$_debug_name+"- @error @serror"?
?"- 302-"+@time+"-"+$_debug_name+"- @error @serror"? ;; Wisconsin Drive Mapping.
?"- 303-"+@time+"-"+$_debug_name+"- @error @serror"?
?"- 304-"+@time+"-"+$_debug_name+"- @error @serror"? ;;Assign Wisconsin Directory.
?"- 305-"+@time+"-"+$_debug_name+"- @error @serror"? ? "Mapping Wisconsin Directory for Wisconsin Users"
?"- 306-"+@time+"-"+$_debug_name+"- @error @serror"? IF INGROUP("Wisconsin")
?"- 307-"+@time+"-"+$_debug_name+"- @error @serror"? USE W: /delete /persistent
?"- 308-"+@time+"-"+$_debug_name+"- @error @serror"? USE W: "\\kramer\wisconsin"
?"- 309-"+@time+"-"+$_debug_name+"- @error @serror"? ENDIF
?"- 310-"+@time+"-"+$_debug_name+"- @error @serror"?
?"- 311-"+@time+"-"+$_debug_name+"- @error @serror"? ;; Teleform Drive Mapping.
?"- 312-"+@time+"-"+$_debug_name+"- @error @serror"?
?"- 313-"+@time+"-"+$_debug_name+"- @error @serror"? ;;Assign Teleform Directory.
?"- 314-"+@time+"-"+$_debug_name+"- @error @serror"? ? "Mapping Teleform Directory for Teleform Users"
?"- 315-"+@time+"-"+$_debug_name+"- @error @serror"? IF INGROUP("Teleform")
?"- 316-"+@time+"-"+$_debug_name+"- @error @serror"? USE U: /delete /persistent
?"- 317-"+@time+"-"+$_debug_name+"- @error @serror"? USE U: "\\susan\teleform"
?"- 318-"+@time+"-"+$_debug_name+"- @error @serror"? ENDIF
?"- 319-"+@time+"-"+$_debug_name+"- @error @serror"?

?"------- end-"+@time+"-"+$_debug_name+"- @error @serror"
? "-"
? "-"+Lcase(@day)+" "+@date+" "+@time+"- kixtart "+$_debug_kix_info+"/kixstrip 4.03e script ending"
IF (Val(Substr($_debug_kix_info,1,1)) >= 4)
IF (Len(@scriptname) <> 0)
" ("+Lcase(@scriptname)+")"
ENDIF
ENDIF
? "-"
IF RedirectOutput("CON")
ENDIF
COLOR c+/n
?
? "Informative KIX "+$_debug_kix_info+":"+" debug info see "+Chr(34)+$_debug_file+Chr(34)
IF (Val(Substr($_debug_kix_info,1,1)) >= 4)
IF (Len(@scriptname) <> 0)
" ("+Lcase(@scriptname)+")"
ENDIF
ENDIF
IF RedirectOutput($_debug_file)
ENDIF
;($begin)
;
; kixstrip 4.03e - kixtart 4.22
;
; mon 12-jan-2004 22:27:55
;
;Informative KIXSTRIP: no errors found (input=341 output=319 skip=22).
;
;Summary KIXSTRIP: block structures
; - do:until [0:0]
; - for|each:in|to:step|next [0|0:0|0:0|0]
; - function:endfunction [0:0]
; - if:else:endif [32:0:32]
; - select:case:endselect [0:0:0]
; - while:loop [0:0]
;Informative KIXSTRIP: 32 block_structures found.
;Informative KIXSTRIP: no UDF's found.
;Informative KIXSTRIP: no labels found.
;Summary KIXSTRIP: BREAK CALL DEBUG DISPLAY ENDFUNCTION EXECUTE EXIT FUNCTION GET GETS GOSUB GOTO OLExxx PLAY QUIT RETURN RUN SHELL SLEEP THEN USE
;Informative KIXSTRIP: 87 USE
;
;($end)


Please return the output to the board.
greetings.

btw: for more info see Debugging script without user input. also during logging on. the advanced way.
_________________________
email scripting@wanadoo.nl homepage scripting@wanadoo.nl | Links | Summary of Site Site KiXforms FAQ kixtart.org library collection mirror MCA | FAQ & UDF help file UDF kixtart.org library collection mirror MCA | mirror USA | mirror europe UDF scriptlogic library collection UDFs | mirror MCA

Top
#111620 - 2004-01-12 10:52 PM Re: Drives not always mapping??
chadh Offline
Fresh Scripter

Registered: 2004-01-12
Posts: 7
Thanks for the replies. I'll do my best to answer the questions. The client computers are Windows 2000 or XP Professional. I am using Kixtart 2001 (version 4.22). It is a newly created script because we are implementing a new domain. I just ran the script in debug mode that the post gave me and the code is below. It seems to be different drives that don't want to map everytime you run the script. Code:
  



-monday 2004/01/12 15:45:43- kixtart 4.22/kixstrip 4.03e script starting (sfmickixtart5.kix)
-
-curdir: c:\windows
-scriptdir: \\silvio\sysvol\sfmic.local\scripts
-scriptexe: kix32.exe (pid 2308)
-scriptname: sfmickixtart5.kix
-startdir: \\silvio\sysvol\sfmic.local\scripts
-
-userid/wuserid: chadh/chadh
-user priv: admin
-version: inwin=1/dos=5.1/productsuite=256/producttype=Windows XP Professional/csd=Service Pack 1
-
- Intel(R) Pentium(R) 4 CPU 2.60GHz (memory 511 MB)
-
-debug file: C:\DOCUME~1\CHADH~1.SFM\LOCALS~1\Temp\kixdebug.txt
-debug name: 20040112_154543.878_2905 sfmickixtart5.kix
-
----- start-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

- 1-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

- 2-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

- 3-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

- 4-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

- 5-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

Mapping Public Directory for Domain Users
- 6-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

Mapping Users Directory for Domain Users
- 7-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

- 8-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

- 9-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

- 10-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

- 11-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

- 12-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

- 13-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

- 14-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

- 15-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

- 16-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

- 17-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

- 18-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

- 19-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

- 20-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

- 21-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

- 22-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

- 23-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

- 24-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

- 25-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

- 26-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

- 27-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

- 28-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

- 29-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

- 30-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

Mapping WWW Directory for AASCIFWebSupport Users
- 31-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

- 35-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

- 36-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

- 37-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

- 38-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

- 39-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

Mapping Admin Directory for Executive Services Users
- 40-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

- 44-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

- 45-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

- 46-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

- 47-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

- 48-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

Mapping Drives for ExecServAdmin Users
- 49-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

- 57-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

- 58-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

- 59-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

- 60-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

- 61-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

Mapping Admin Directory for HR Users
- 62-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

- 66-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

- 67-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

Mapping HRvantage Directory for HRvantage Users
- 68-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

- 72-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

- 73-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

Mapping Paychex Directory for HRDirector, HRAssistant Users
- 74-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

- 78-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

- 79-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

- 80-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

- 81-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

- 82-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

Mapping Policydocs Directory for Auditing Users
- 83-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

Mapping Insops Directory for Auditing Users
- 84-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

- 90-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

- 91-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

- 92-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

- 93-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

- 94-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

Mapping Claims Directory for Claims Reps Users
- 95-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

- 99-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

- 100-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

- 101-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

- 102-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

- 103-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

Mapping Claims Directory for Claims Supervisors
- 104-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

- 108-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

- 109-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

- 110-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

- 111-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

- 112-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

Mapping Comm Directory for Communications Users
- 113-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

- 114-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

- 118-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

- 119-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

- 120-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

Mapping Insops Directory for Communications Admin
- 121-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

- 125-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

- 126-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

- 127-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

- 128-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

- 129-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

Mapping CompRehap Directory for Comp Rehab Users
- 130-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

- 134-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

- 135-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

- 136-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

- 137-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

- 138-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

Mapping CompCost Directory for Comp Cost Bill Review Users
- 139-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

- 143-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

- 144-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

- 145-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

- 146-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

- 147-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

Mapping Compcost Directory for Comp Cost Supervisor
- 148-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

Mapping Claims Directory for Comp Cost Supervisor
- 149-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

- 155-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

- 156-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

- 157-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

- 158-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

- 159-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

Mapping CCshare Directory for CCShare Users
- 160-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

- 164-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

- 165-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

- 166-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

- 167-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

- 168-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

- 169-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

Mapping Compcost Directory for Users in Different Departments
- 170-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

- 174-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

- 175-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

- 176-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

- 177-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

- 178-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

Mapping Finance Directory for Finance Users
- 179-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

- 183-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

- 184-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

- 185-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

Mapping Freedom Directory for FreedomFull Users
- 186-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

- 190-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

- 191-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

- 192-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

- 193-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

- 194-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

Mapping IS Directory for IS Users
- 195-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

- 196-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

- 197-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

- 198-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

- 199-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 2250 This network connection does not exist.

- 200-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 2250 This network connection does not exist.

- 201-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 2250 This network connection does not exist.

- 202-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 2250 This network connection does not exist.

Mapping Drivers Directory for ISSupport Users
- 203-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 2250 This network connection does not exist.

- 204-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 2250 This network connection does not exist.

- 205-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

- 206-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

- 207-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

- 208-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

- 209-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

Mapping Trackit Directory for ISVP
- 210-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

Mapping Paychex Directory for ISVP
- 211-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

- 217-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

- 218-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

- 219-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

- 220-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

- 221-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

Mapping Policydocs Directory for LP Users
- 222-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

Mapping Insops directories LP Users
- 223-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

- 229-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

- 230-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

- 231-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

- 232-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

- 233-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

Mapping Legal Directory for LSA Users
- 234-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

- 238-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

- 239-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

- 240-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

- 241-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

- 242-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

Mapping Policydocs Directory for PHS Users
- 243-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

Mapping Insops directories for PHS Users
- 244-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

- 250-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

- 251-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

- 252-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

- 253-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

- 254-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

Mapping Policydocs Directory for Sales Users
- 255-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

Mapping Insops directories for Sales Users
- 256-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

- 262-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

- 263-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

- 264-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

- 265-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

- 266-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

- 267-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

- 268-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

- 269-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

Mapping Policydocs Directory for UW Users
- 270-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

Mapping Insops Directory for UW Users
- 271-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

- 279-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

- 280-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

- 281-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

- 282-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

- 283-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

Mapping Supervisors Directory for Supervisors
- 284-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

- 292-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

- 293-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

- 294-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

- 295-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

- 296-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

Mapping CheckImage Directory for CheckImage Users
- 297-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

- 301-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

- 302-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

- 303-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

- 304-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

- 305-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

Mapping Wisconsin Directory for Wisconsin Users
- 306-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

- 310-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

- 311-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

- 312-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

- 313-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

- 314-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

Mapping Teleform Directory for Teleform Users
- 315-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

- 319-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.

------- end-15:45:43-20040112_154543.878_2905 sfmickixtart5.kix- 0 The operation completed successfully.
-
-monday 2004/01/12 15:45:43- kixtart 4.22/kixstrip 4.03e script ending (sfmickixtart5.kix)
-

Thanks.

Top
#111621 - 2004-01-12 11:50 PM Re: Drives not always mapping??
MCA Offline
KiX Supporter
*****

Registered: 2000-04-28
Posts: 5152
Loc: Netherlands, EU
Thanks for the feedback.
Another questions
- which drives are really mapped in this situation?
- from which groups you are a member?
Suggestion: replace %username% by the internal kixtart macro @userid.
greetings
_________________________
email scripting@wanadoo.nl homepage scripting@wanadoo.nl | Links | Summary of Site Site KiXforms FAQ kixtart.org library collection mirror MCA | FAQ & UDF help file UDF kixtart.org library collection mirror MCA | mirror USA | mirror europe UDF scriptlogic library collection UDFs | mirror MCA

Top
#111622 - 2004-01-13 12:08 AM Re: Drives not always mapping??
MCA Offline
KiX Supporter
*****

Registered: 2000-04-28
Posts: 5152
Loc: Netherlands, EU
Dear,

We take a close look at the output and we see that you are trying to delete a not mapped drive (line 199)
Code:

IF INGROUP("IS")
USE F: /delete /persistent
USE F: "\\kramer\is"
[b]USE Y: /delete /persistent[/b]
ENDIF


which returns the above error message (- 199-....- 2250 This network connection does not exist.).
greetings.
_________________________
email scripting@wanadoo.nl homepage scripting@wanadoo.nl | Links | Summary of Site Site KiXforms FAQ kixtart.org library collection mirror MCA | FAQ & UDF help file UDF kixtart.org library collection mirror MCA | mirror USA | mirror europe UDF scriptlogic library collection UDFs | mirror MCA

Top
#111623 - 2004-01-13 04:33 AM Re: Drives not always mapping??
chadh Offline
Fresh Scripter

Registered: 2004-01-12
Posts: 7
It seems to be when you are a member of Domain Users, IS, and ISSupport, but I haven't verified there are problems with being in other groups yet. I wanted to resolve this issue first. So the drive mappings should be F:, I:, P:, and Z:. I also removed the Y: /delete line and it still has problems. I put that in to test removing some mapped drives, so it is now removed from the script.

Chad

Top
#111624 - 2004-01-13 07:34 AM Re: Drives not always mapping??
Lonkero Administrator Offline
KiX Master Guru
*****

Registered: 2001-06-05
Posts: 22346
Loc: OK
k, think it was asked in the very beginning but left unanswered, so I call it up again:
what OS is installed on the failing systems?
is there any consistency on which machines the maps fail or are they failing on each system randomly?
_________________________
!

download KiXnet

Top
#111625 - 2004-01-13 07:49 AM Re: Drives not always mapping??
MCA Offline
KiX Supporter
*****

Registered: 2000-04-28
Posts: 5152
Loc: Netherlands, EU
Dear,

Our debugging shows that he is running XP Professiobal (-version: inwin=1/dos=5.1/productsuite=256/producttype=Windows XP Professional/csd=Service Pack 1)
greetings
_________________________
email scripting@wanadoo.nl homepage scripting@wanadoo.nl | Links | Summary of Site Site KiXforms FAQ kixtart.org library collection mirror MCA | FAQ & UDF help file UDF kixtart.org library collection mirror MCA | mirror USA | mirror europe UDF scriptlogic library collection UDFs | mirror MCA

Top
#111626 - 2004-01-13 08:09 AM Re: Drives not always mapping??
Lonkero Administrator Offline
KiX Master Guru
*****

Registered: 2001-06-05
Posts: 22346
Loc: OK
yep. I saw that, MCA.
but you must also understand that not all of his users will be logging on with HIS workstation.
right?

cheers.
_________________________
!

download KiXnet

Top
#111627 - 2004-01-13 08:55 AM Re: Drives not always mapping??
Co Offline
MM club member
***

Registered: 2000-11-20
Posts: 1342
Loc: NL
It was answered...

Quote:


Thanks for the replies. I'll do my best to answer the questions. The client computers are Windows 2000 or XP Professional. I am using Kixtart 2001 (version 4.22). It is a newly created script because we are implementing a new domain. I just ran the script in debug mode that the post gave me and the code is below. It seems to be different drives that don't want to map everytime you run the script.



_________________________
Co


Top
#111628 - 2004-01-13 02:37 PM Re: Drives not always mapping??
chadh Offline
Fresh Scripter

Registered: 2004-01-12
Posts: 7
I ran the debug script on a Windows XP machine and it continues to have the same symptoms. I went to a Windows 2000 machine and tried the script multiple times (10) and it worked just fine. It seems to be only a problem on Windows XP computers.

Chad

Top
#111629 - 2004-01-13 02:44 PM Re: Drives not always mapping??
Co Offline
MM club member
***

Registered: 2000-11-20
Posts: 1342
Loc: NL
You didn't answered this question...
Quote:

Does your script starts synchrononously or asynchronously?





Find out what the differences are between XP and 2000. Search for differences in your policy settings


Edited by Co (2004-01-13 02:45 PM)
_________________________
Co


Top
#111630 - 2004-01-13 02:53 PM Re: Drives not always mapping??
Kdyer Offline
KiX Supporter
*****

Registered: 2001-01-03
Posts: 6241
Loc: Tigard, OR
Additionally, you may want to look into - 305293 - Description of the Windows XP Professional Fast Logon Optimization Feature

HTH,

Kent
_________________________
Utilize these resources:
UDFs (Full List)
KiXtart FAQ & How to's

Top
#111631 - 2004-01-13 03:03 PM Re: Drives not always mapping??
chadh Offline
Fresh Scripter

Registered: 2004-01-12
Posts: 7
I guess I don't understand this question. Can you explain the difference? I did enable the GP so XP waits for the network to start up, but I get the same results.

Chad

Top
#111632 - 2004-01-13 03:18 PM Re: Drives not always mapping??
Co Offline
MM club member
***

Registered: 2000-11-20
Posts: 1342
Loc: NL
Than this isn't the problem.. You have to search for other possible solutions...

Edited by Co (2004-01-13 03:22 PM)
_________________________
Co


Top
#111633 - 2005-10-26 10:06 PM Re: Drives not always mapping??
shtroumf Offline
Fresh Scripter

Registered: 2005-08-13
Posts: 7
I have the same exact problem on Windows 200 computers.
Top
#111634 - 2005-10-26 11:06 PM Re: Drives not always mapping??
NTDOC Administrator Offline
Administrator
*****

Registered: 2000-07-28
Posts: 11625
Loc: CA
Please do not hijack topics. Post your own topic and reference this one if needed.

This post is over a year old now.
 


Edited by NTDOC (2005-10-26 11:07 PM)

Top
Page 1 of 1 1


Moderator:  Jochen, Allen, Radimus, Glenn Barnas, ShaneEP, Ruud van Velsen, Arend_, Mart 
Hop to:
Shout Box

Who's Online
0 registered and 202 anonymous users online.
Newest Members
BeeEm, min_seow, Audio, Hoschi, Comet
17882 Registered Users

Generated in 0.08 seconds in which 0.031 seconds were spent on a total of 12 queries. Zlib compression enabled.

Search the board with:
superb Board Search
or try with google:
Google
Web kixtart.org