Hey guys,

Please excuse my ignorance. I am only familiar with the basic kix commands. I have tried the above and did not see any errors punched out?

Below are my basic scripts (without any of the code above put it). I am using 7777 as unique identifier for server.

My logonserver is 7777DCC01. I wish to use the 7777 from the logonserver to map drives to the FNP server

======================================================
7777.bat

@ECHO OFF
%logonserver%\netlogon\software\wkix32.exe %logonserver%\netlogon\7777\7777.kix /i
======================================================
7777.kix

; 7777.KIX
; KiXtart script to map network drives

$SERVER = '7777FNP01'
$DOMAIN = 'DOMAIN.LOCAL'

; ******** Map Network Drives ********

use i: /delete /persistent
use g: /delete /persistent
use m: /delete /persistent
use s: /delete /persistent

SLEEP 1
======================================================


Thank you for your assistance and patience.