Hey there,

We have been trying to call or open multiple .kix files in multiple subdirectories.
we got a main file in our netlogon folder.
what we'd like to do is open .kix files (which will install the program depending on the directorie, for example, a .kix file in ccleaner) from the netlogon/apps/program folder.

but we can't seem to work it out
this the code we are using per program to install them
note, this all the code in that file

IF not exist ("C:\Program Files\kixinstall\CCleaner Installed.dum")
$NewsTextBox.Text="Bezig met het installeren van Ccleaner."
Shell ("\\$srvnaam\NETLOGON\apps\ccleaner\ccsetupSlim.exe /S /D=C:\Program files\CCleaner /L=1031")
COPY "\\$srvnaam\NETLOGON\apps\ccleaner\CCleaner Installed.dum" "C:\Program Files\kixinstall\*.*" /r /c
Endif

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


edit:
maybe a bit of a better explanation of what we are trying to do.
we want the main .kix file to look and open other .kix files in the /apps folders


Edited by LSSJPDude (2012-09-27 11:29 AM)