I have an old 32-bit application (created for Windows XP) that is installed via an old Wise setup EXE. I'm having to rebuild this into a new MSI setup using Advanced Installer. All I have is the files and where they go which I was able to obtain using UniExtractor. I can see that the old setup installs files into the Windows\System and Windows\System32 folders. These days the Windows\System folder doesn't exist, so would I install the files as follows:
- Assuming we're installing to Windows 7 x86 (32-bit) - is it okay to install all the old Windows\System AND Windows\System32 files into the Windows\System32 folder?
- Assuming we're installing to Windows 7 x64 (64-bit) - is it okay to install all the old Windows\System AND Windows\System32 files into the SysWoW64 folder?
Lastly, how can I determine what the version of the destination OS is (x86 or x64) in Advanced Installer and then correctly install the files into the correct System folder (System32 or SysWoW64)?
Thank you very much for your time and assistance.