I think, you choosed wrong topic area. As, .ISS files are from InstallShield (a part of the Delphi package).
It could be possible to store additional EXE file inside of a Pascal created EXE file. But, the additional EXE file would have to be extracted in order to run it. Other solutions would require some assembler code to make it work. And, the Pascal linker will not be able to make such an EXE stored inside of annother EXE trick, I believe.
Main Topics
Browse All Topics





by: whatboyPosted on 2006-12-11 at 13:43:12ID: 18118317
uses Dos;
';
var
ProgramName, CmdLine: string;
begin
ProgramName:='SomeProg.exe
CmdLine:=''; (* Options for the program goes here *)
SwapVectors;
Exec(ProgramName, CmdLine);
SwapVectors;
End.
>>wonder if all tasks(envirement checking)...
Don't think so... maybe what kind of data you want to extract from PC??? what OS...
BTW... are you sure you don't want DELPHI help instead of PASCAL???