Hi,
I have a problem that is driving me crazy.
I made a very simple script in order to map some shares on a file server based on the membership to a group or to certain usernames and this had worked since last week but today for no reason is not working.
The script seems to start but simply ignore the mapping parts, i paste those parts below:
 Code:
If InGroup("BACKOFFICE")
Use O: /DELETE
Use O: "\\Server\Department$\BackOffice" 
EndIf

If InGroup("FINANCE")
Use F: /DELETE
Use F: "\\\\Server\Department$\\Finance" 
EndIf

If @USERID = "ThatGuy"
Use G: /DELETE
Use G: "\\SSRVEIBC01\Department$\ThatFolder"
EndIf			


I'm using KixTart version 4.60 and I'm trying to map shares on a Windows 2003 R2, I also noticed that since a yesterday I have this error in the event viewer of the windows file server:
Error 1 Source: KIXTART

The description for Event ID ( 1 ) in Source ( KIXTART ) cannot be found. The local computer may not have the necessary registry information or message DLL files to display messages from a remote computer. You may be able to use the /AUXSOURCE= flag to retrieve this description; see Help and Support for details. The following information is part of the event:
ERROR : failed to find/open script [script.kix]!
Error : Incorrect function. (0x1/1).

I don't understand whta's wrong and why it has worked for weeks and now suddenly had stopped.
Thanks in advance for your help.