In order to run a kix script you have to put a myScript.kix file in that same directory as kix32.exe then from cmd go to that directory and
Kix32 myScript
Then your kix script will run.
I want to do this in .net programatically. I am not sure the plumbing on how to accomplish this I have this so far but this will only run Kix32.exe where do I put info about myScript?
var process = new Process();
process.StartInfo.UseShellExecute = false;
process.StartInfo.RedirectStandardOutput = true;
process.StartInfo.CreateNoWindow = true;
process.StartInfo.FileName = Kix32;
process.Start();
string output = process.StandardOutput.ReadToEnd();
process.WaitForExit();