I'm trying to run process on ms server 2003 and iis 6, but it isn't avail.
Process _process = new Process();
_process.StartInfo.FileName = Server.MapPath("~/Content/vtourPolygon/krpanotools/kmakemultires.exe");
_process.StartInfo.UseShellExecute = true;
_process.StartInfo.CreateNoWindow = true;
string templatePath = Server.MapPath("~/Content/vtourPolygon/krpanotools/templates/normal.config");
string imagePath = Server.MapPath("~/Content/vtourPolygon/image.jpg");
_process.StartInfo.Arguments = string.Format("krpanotools makepano -config={0} {1}", templatePath, imagePath);
_process.Start();
_process.WaitForExit();
What's the problem