Hi All,
I have created one web application. To open AX.exe , I have used the below code ,
Process cmd = new Process();
cmd.StartInfo.Verb = "runas";
string commandToExecute = @"ax32.exe -startupcmd=AOTImport_C:\Table_DM.xpo";
Process.Start(@"cmd", @"/c " + commandToExecute);
This is working fine before hosting this web application.
After Host into IIS it doesn't work.
Please help me to do.
Thanks,
Karthick.M
*This post is locked for comments
I have the same question (0)