FYI

Quote:

What version @KiX?
latest downloadable version




Does not specifically tell us what version you're running because were not sure where you downloaded from.

I will assume KiXtart 4.22

Just try running a whole new script on a test account.

In user manager place something like this on the account for testing.

KIX32.EXE TEST.KIX /F

Then in the script just place this code...

Code:
Break On

Dim $SO,$x
$SO=SetOption('Explicit','On')
$SO=SetOption('NoVarsInStrings','On')


DIM $RootServer,$NTSoftware
'Welcome to test script - going to sleep for 3 seconds ' ?
sleep 3
'Welcome to test script - going to sleep for 5 seconds ' ?
sleep 5
'Welcome to test script - going to sleep for 10 seconds ' ?
sleep 10
'Okay sleep timing should have been okay. Now we will try some other tasks.' ?
$RootServer = "\\clnhfp01\"
$NTSoftware = $RootServer + "NTSoftware"
'My NT Software location is: ' + $NTSoftware
'Will now attempt to map the N: drive to NTSoftware ' ?
Use N: $NTSoftware
'Mapping N drive error was: ' + @ERROR + ' - ' + @SERROR
get $x



This code should complete very quickly, if not then you will have to start digging into the way your Network is setup.

The get $x at the end of the code will cause the script to hold and wait until you press a key so that you can see all of this on screen.