Timboli: How does content get to its final destination - COPY or MOVE?...Or are you saying some kind of create (Build) occurs at the final destination folder, that doesn't involve a straight COPY or MOVE from the TEMP folder?
The following happens when you run an "old" GOG installer (either without a suffix or a short version suffix):
* a randomly named subfolder is created in the TEMP folder (call this TEMP1);
* an identically-named .tmp file is placed in that folder and executed - this creates another random subfolder in TEMP (TEMP2), and extracts its files (mainly graphics and support DLLs) into it;
* the setup window is displayed where you choose options like your preferred installation folder;
* when you press "Start Installation", extra files are copied into (TEMP2) for the graphics to be displayed during install;
* game files are placed in your installation folder. They are not held in TEMP/TEMP1/TEMP2 so must have been extracted from the original installer .exe/.bin files;
* installers for needed system components (VC++ libraries, .NET Framwork) are extracted to a __redist folder in the install folder as part of the previous step - these are now run;
* TEMP1/TEMP2 folders and their contents are deleted.
The following happens when you run a "new" GOG installer (with a long version suffix):
* a randomly named subfolder is created in the TEMP folder (call this TEMP1);
* an identically-named .tmp file is placed in that folder and executed - this creates another random subfolder in TEMP (TEMP2), and extracts its files into it - including the graphics displayed during install;
* you are asked for your preferred language;
* the setup window is displayed where you choose options like your preferred installation folder;
* dozens of subfolders are created under TEMP2 - these were empty when I viewed them but I'd guess these would contain individual game files prior to them being moved/copied to the install folder;
* installers for needed system components (VC++ libraries, .NET Framwork) are extracted to a __redist folder in the install folder as part of the previous step - these are now run;
* scriptinterpreter.exe in the redist folder is now run, which adds entries to the Windows Registry and Start Menu;
* TEMP1/TEMP2 folders and their contents are deleted.
There may have been other changes between "old" and "new" installers, but the above should still generally apply.
Timboli: This is important to know, because COPY and MOVE are not the same processes. MOVE can be instant if on the same drive, while COPY never is. COPY will always involve more wear & tear of your drives.
If you want a definitive answer to that, then I would suggest you fire up
Process Monitor and use that to examine a few installs. Since installs are (or should be) an infrequent event, I see no point in considering the wear-and-tear they might create.