Thread: DiskSpan GUI
View Single Post
  #9  
Old 14-05-2023, 09:35
Cesar82's Avatar
Cesar82 Cesar82 is offline
Registered User
 
Join Date: May 2011
Location: Brazil
Posts: 1,074
Thanks: 1,814
Thanked 2,304 Times in 787 Posts
Cesar82 is on a distinguished road
Quote:
Originally Posted by adrianskiloses View Post
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 View Post
Also how do I use a compression command like in DiskSpan_GUI?
Simply paste the commandline in Edit for the method that should work.
Reply With Quote
The Following 2 Users Say Thank You to Cesar82 For This Useful Post:
adrianskiloses (14-05-2023), pcblizzard (21-05-2023)