Got it, here you go, sorry if the formatting is a little off...This is just the small portion that is responsible for mappings. Our version of Kixtart is 2.something....am checking now, will upgrading to the newest version have any effect? Thanks again

; Script initialization and diagnostics

break off ;Logs out user if script is
;exited unexpectedly.
color w+/b ;Sets screen color to bright
;white on blue.
settime "\\LETO" ;Synchronizes workstation time
;with domain controller.
cls ;Clears the screen.

?"Welcome to companyname, @fullname" ;Displays welcome message.
?"It is @time on @day, @month @mdayno, @year" ;Displays current workstation
;date.
?" "
?"Computer name: @wksta" ;Displays workstation name.
?"Ethernet address: @address" ;Displays workstation ethernet
;MAC address.
?"IP address: @ipaddress0" ;Displays workstation IP address.
?"Hostname: @hostname" ;Displays workstation's fully
;qualified domain name.
?"Logon Server: @lserver" ;Displays logon domain controller.
?"Kixtart version: @kix" ;Displays KiXtart version.
:Main
SELECT
CASE ((@INWIN = 1) AND (@DOS = 5.1)) ; What OS is the user running?
$OS = "WinXP"
CASE ((@INWIN = 1) AND (@DOS = 5.0))
$OS = "Win2K"
CASE ((@INWIN = 1) AND (@DOS = 4.0))
$OS = "WinNT4"
CASE 1
$OS = "UnKnown"
ENDSELECT
? "OS Version: " + $OS ;Displays User's OS
?" " ;Displays blank line.

?" " ;Displays blank line.

;-----------------------------------------------------------------------------------

; Connect network drives and department folders.

?"Connecting network drives" ;Display drive connection message.

if ingroup("Audit Group")
use f: "\\$fileserver\apps" ;Connect Apps folder.
"."

use g: "\\$fileserver\group" ;Connect Group folder.
"."

use h: "\\$fileserver\@userid" ;Connect user's personal folder.
"."

use l: "\\$fileserver\lacert95" ;Connect Lacerte folder.
"."

use n: "\\Eos\clients" ;Connect clients folder.
"."

use p: "\\$fileserver\tempclients" ;Connect to Temporary FAM2000 files
"."

use s: "\\BRIZO\best" ;Connect MAS90 folder.
"."

endif

if ingroup("Tax Group")
use o: "\\EOS\tmfa1999" ;Connect to Tax Management Federal Tax Cases
"."

use q: "\\EOS\tmforms01" ;Connect to Tax Management Forms 01
"."

use r: "\\EOS\tmcb2000" ;Connect to Tax Management Portfolio+ -Practice Tools
"."

use t: "\\EOS\tmforms99" ;Connect to Tax Management Forms 99
"."

use u: "\\EOS\tmlr2000" ;Connect to Tax Management IRS Rulings
"."

use v: "\\EOS\tmfc2000" ;Connect to Tax Management Federal Cases
"."

use w: "\\EOS\tmforms00" ;Connect to Tax Management Forms 00
"."

use x: "\\EOS\kleinrock" ;Connect to Klienrock's Tax Expert
"."

use y: "\\EOS\tmca2000" ;Connect to Tax Management Portfolio+ - P & R
"."

endif

if ingroup("Nexlink")
use h: "\\$fileserver\@userid" ;Connect user's personal folder.
"."

use t: "\\Poseidon\it" ;Connect to IT folder
"."

use u: "\\Apollo\nexlink" ;Connect to Nexlink folder
"."

use l: "\\$fileserver\lacert95" ;Connect Lacerte folder.
"."

use w: "\\BRIZO\PPC" ;Connect to PPC folder.
"."

use s: "\\BRIZO\best" ;Connect MAS90 folder.
"."

endif