Files
DP44/DataPRO/DataPRO Installer/Source Files/.svn/pristine/ab/abad08f2840236435ccec35299fdfdea42d34dd8.svn-base

23 lines
631 B
Plaintext
Raw Permalink Normal View History

2026-04-17 14:55:32 -04:00
using System.Diagnostics;
namespace DPInstallWrapper2
{
class DPInstallWrapper2
{
static int Main(string[] args)
{
var proc = new Process();
proc.StartInfo.FileName = args[0];
proc.StartInfo.Arguments = args[1] + " " + args[2] + " " + args[3];
proc.Start();
proc.WaitForExit();
var exitCode = proc.ExitCode;
proc.Close();
//dpinst.exe returns non-zero, even when successful,
//so this wrapper returns 0 (Success) to the installer.
return 0;
}
}
}