Move a program from one computer to another with no installer

0

0

Hi,

I have a program back on my old computer that works just fine there but then I got a new computer and I want to have it there as well. However, I dont have the installer and I cant get it back because the developer site is offline and not coming back.

How can I identify all the necessary files and components (like registry values, etc.) so I can copy them from my old computer exactly the way they are onto my new computer to make it work?

Thank you.

Cain Nuke

Posted 2017-09-01T21:53:00.217

Reputation: 177

1If the program will work without installing it then just cope the installation folder. If it works great, if it doesn't, then you have to install the program – Ramhound – 2017-09-01T21:58:44.193

The program works fine on my OLD computer but it wont work on my new one if its not installed first and I dont have the installer hence my question. – Cain Nuke – 2017-09-01T22:08:55.393

You can use either a debugger or a system logger. see See what files/registry keys are being accessed by application in Windows

– gnblizz – 2017-09-01T23:28:09.670

Do you know if it is MSI based?

Can you find reference to the app under say: HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Products\ Does it have a LocalPackage value?

Can you find it under: HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall or say: HKLM\SOFTWARE\wow6432node\Microsoft\Windows\CurrentVersion\Uninstall What might the UninstallString values be? – HelpingHand – 2017-09-01T23:34:10.600

I found some strings in registry but I think they are too many to keep track. – Cain Nuke – 2017-09-02T00:06:17.887

"It doesn't work without being installed" doesnt tell us very much – Ramhound – 2017-09-02T00:13:05.540

Did you find a value for LocalPackage? – HelpingHand – 2017-09-02T00:14:44.233

Can you provide the name of that program? – Biswapriyo – 2017-09-02T05:09:15.233

No, I could find that value. The program is called FHL switcher. It was developed by a fan of the FIFA soccer games and he is not updating it anymore. When you run it for the first time on a computer, it tries to download some files, I guess from his website which is offline now so I think thats the reason. – Cain Nuke – 2017-09-02T15:40:43.200

Can you provide a link to the exe you have? I assume that if it does download files, there is a chance that with something like Wireshark running, you might be able to see the HTTP requests for files. If you then know the first file name, maybe you have that on your original computer along with subsequent files. You could potentially mock up the repository to understand the files being requested. I assume it does no validation at least at the download phase so there is potential to put any file with the same name/path on a local site to "learn" the file set being requested. – HelpingHand – 2017-09-02T19:29:56.327

There is no link, but I can send it to you by mail if you wish. – Cain Nuke – 2017-09-06T17:05:13.647

Answers

0

You could use a commercial program like PCmover or Total Uninstall. I use the latter to monitor the installation of new software on systems, so I know what files and registry entries have been added or modified during a software installation, but it can also be used for moving programs from one system to another. Alternatively, if you know the URL for the developer's website, you may still be able to download the software via the Internet Archives's WayBack Machine. If you are unfamiliar with the WayBack Machine it is a project to archive the web by periodically copying sites' content to an archive to preserve content for posterity.

moonpoint

Posted 2017-09-01T21:53:00.217

Reputation: 4 432