\\sop-dc1\netlogon
cmd.exe was started with the above path as the current directory.
UNC paths are not supported. Defaulting to windows directory.

C:\windows> kix32 er.kix

I have used group policy to make the call to this the batch file that calls the kix file. However, it doesn't run because of the above error. Anyone know exactly how I can resolve this issue. I'm running in a mixed 2000/xp user environment and a 2003 Domain controller. The kix file that is being called is simply mapping drives with IF statements:

small sample:
If InGroup("San Francisco IBG")

USE G: "\\FILERA\USERS\"
USE H: "\\FILERA\IBG USERS"
use l: "\\ca-dc\sys"
use n: "\\ca-dc\investment banking\%USERNAME%"
use o: "\\ca-dc\v2"
use t: "\\ca-dc\database"
use z: "\\filera\IBG Users\California Users\%USERNAME%\notes"
EndIf
If InGroup("Chicago IBG")
USE G: "\\FILERA\USERS\"
USE H: "\\FILERA\IBG USERS"
use l: "\\chi-dc\sys"
use n: "\\chi-dc\investment banking\%USERNAME%"
use o: "\\chi-dc\v2"
use t: "\\chi-dc\database"
use z: "\\filera\IBG Users\Chicago Users\%USERNAME%\notes"
EndIf
If InGroup("Atlanta IBG")..........