Quote:
Originally Posted by adrianskiloses
But what if I want the script to copy something? How do I get the install directory, the current directory, etc?
|
I think it should only work for you using the command below in Edit referring to "Command prompt commandline to run in installation":
Code:
copy "{src}\Extras\*" "{app}\"
The above command must copy all the contents of the Extras folder that will be next to Setup.exe (Or on the disk that contains the corresponding Data#bin if you save the conversion on discs) to the game installation folder.
If the folder doesn't exist it will fail then you should use something like this:
Code:
((md "{app}\Extras")&(copy "{src}\Extras\*" "{app}\Extras"))
Quote:
Originally Posted by adrianskiloses
Also how do I use a compression command like in DiskSpan_GUI?
|
Simply paste the commandline in Edit for the method that should work.