「スクリプト」を使用しても機能しないと思います。中間ファイルには、策略が機能するための .exe 拡張子が必要だからです。
これを行うには、非常に小さなコマンド ライン プログラムを作成します。次のようなものです (Delphi/Virtual Pascal で記述されているため、Win32 実行可能ファイルになりますが、コンパイルされた言語であれば実行できます)。
program PassThrough;
uses
Dos; // Imports the Exec routine
const
PassTo = 'Original.exe'; // The program you really want to call
var
CommandLine: String;
i: Integer;
f: Text;
begin
CommandLine := '';
for i := 1 to ParamCount do
CommandLine := CommandLine + ParamStr(i) + ' ';
Assign(f,'Passthrough.log');
Append(f);
Writeln(f, CommandLine); // Write a line in the log
Close(f);
Exec(PassTo, CommandLine); // Run the intended program
end.