Well it does look as though KiXtar is not copying the files correctly due to what it thinks is some type of syntax error.
Code:
Break On
'KiXtart version is: ' + @KiX ?
'About to copy file from UNC...' ?
copy "\\msef001\shared\TEST.TXT" "c:\unc\"
'Copy UNC File Error was: ' + @ERROR + ' - ' + @SERROR ?
??
'About to copy file from LOCAL DRIVE...' ?
copy "C:\MYSCRIPTS\myscript.kix" "c:\local\"
'Copy LOCAL File Error was: ' + @ERROR + ' - ' + @SERROR ?
??
'About to copy file from MAPPED DRIVE...' ?
copy "F:\Al\PPTMSE.ppt" "c:\mapped\"
'Copy MAPPED File Error was: ' + @ERROR + ' - ' + @SERROR ?
Gives me this result.
Code:
KiXtart version is: 4.52 Release Candidate 2
About to copy file from UNC...
Copy UNC File Error was: 123 - The filename, directory name, or volume label syntax is incorrect.
About to copy file from LOCAL DRIVE...
Copy LOCAL File Error was: 123 - The filename, directory name, or volume label syntax is incorrect.
About to copy file from MAPPED DRIVE...
Copy MAPPED File Error was: 123 - The filename, directory name, or volume label syntax is incorrect.
Will do some more testing to see what I can determine.
Even if I add wildcards or full path for SOURCE and DESTINATION I get errors and it won't copy the files.
This is a beaut...
Code:
'KiXtart version is: ' + @KiX ?
'About to copy file from UNC...' ?
copy "\\msef001\shared\TEST.TXT\" "c:\unc\TEST.TXT"
'Copy UNC File Error was: ' + @ERROR + ' - ' + @SERROR ?
Gives a result of this:
Code:
KiXtart version is: 4.52 Release Candidate 2
About to copy file from UNC...
Copy UNC File Error was: 0 - The operation completed successfully.
However it did not create a folder or copy the file either one, so to me that is a bug. In theory it said to copy nothing to TEST.TXT and it said it did, but no TEST.TXT file was created or copied either one.