Ok now i have a minor problem. I am testing my script with a Dummy User Account but the KIX Script will not load. I used a login.bat to call my KIX Script. Here's what I have for my login. I'm currently testing on a Windows XP machine.

@echo off

SETLOCAL

VER | find "NT" > nul
If NOT errorlevel 1 GoTo Win_NT

VER | find "2000" > nul
If NOT errorlevel 1 GoTo Win_2000

VER | find "XP" > nul
If NOT errorlevel 1 GoTo Win_XP


GoTo unknown_os

:win_NT
Call kix32.exe GS1wAV.KIX
GoTo end

:win_2000
Call kix32.exe GS1wAV.KIX
GoTo end

:win_XP
Call kix32.exe GS1wAV.KIX
GoTo end


:unknown_os

:end