Originally Posted By: LSSJPDude

....
as for the code to call the .kix files
we have been experimenting with call and shell in the following code

call ("\\svrnaam\netlogon\apps\*\*.kix")

but all this doesn't want to work unfortunatly
so any help is appreciated
....


The Call command ode snot work like that. It does not requires brackets and does not not take wildcards.

One way to call all .kix files from a specific folder is like this:
 Code:
$file = Dir("\\server\share\somefolder\*.kix")
While $file <> "" And @ERROR = 0
	Call "\\server\share\somefolder\" + $file
 	;Get next *.kix filename.
	$file = Dir()
Loop
_________________________
Mart

- Chuck Norris once sold ebay to ebay on ebay.