I think you are getting the batch file and the kix file mixed up. I'm not sure about your paths for the logon.kix, but I will let you figure that out.

If you want to use a batch file, call it logon.bat (or whatever.bat). In the bat file:

 Code:
@echo off
%0\..\kix32.exe \\s0001\NETLOGON\logon.kix


In your logon.kix... quotes around your paths, fix delte
 Code:
if ingroup ('classified')
  use x: /delete
  use x: "\\s0001\classified"
endif

if ingroup ('confidential')
  use y: /delete
  use y: "\\s0001\confidential"
endif

use z: /delete
use z: \\s0001\general
_________________________
(... better days ahead)