Hi all,
Could do with some help if possible.
I have these to code files which run kick scripts for a program. Listed here they are prodinput and prodoutput respecitvely.
and
I'd like to change the locations to a registry key and check it works before running the script on a production server.
What do i need to change here?
Thanks
Could do with some help if possible.
I have these to code files which run kick scripts for a program. Listed here they are prodinput and prodoutput respecitvely.
Code:
int InitService() {
int result;
GetStartupInfo(&procSU);
result = CreateProcess(NULL, "C:\\Progra~1\\Kix32\\Kix32.exe \\\\ukbrafax2\\kix\\input.scr $log=both $IniFile=\\\\ukbrafax2\\kix\\eflow.ini", NULL, NULL, TRUE, 0, NULL, NULL, &procSU, &fgProc);
return(result);
and
Code:
int InitService() {
int result;
GetStartupInfo(&procSU);
result = CreateProcess(NULL, "C:\\Progra~1\\Kix32\\Kix32.exe \\\\ukbrafax2\\kix\\output.scr $log=both $iniFile=\\\\ukbrafax2\\kix\\eflow.ini", NULL, NULL, TRUE, 0, NULL, NULL, &procSU, &fgProc);
return(result);
I'd like to change the locations to a registry key and check it works before running the script on a production server.
What do i need to change here?
Thanks