I'm trying to do the following :
- Suppose a user with username "annie" is connected to the foo.example.com website
- On the website I give a link to download a msi setup (developped with WIX 3.5)
- The setup installs a small program that will ask logon information upon first launch (server name : foo.example.com, username : annie, password).
Since annie is already connected to the foo.example.com, it would be great if the server name and user name were alreay pre-filled.
I know that for some remote-control software (NetViewer for example), you can send a mail invite to the person whose computer you want to control. In the mail you have a link containing the session number (for example : https://get.netviewer.com/support/join.php?sinr=502436783&sipw=nv64) wich prompts a download for the client software that upon launch will automatically have the session number automatically filled.
I don't know how they do it, but I suppose you can easily append a few bytes (session number) at the end of the exe file, and then have the executable look for the extra trailing bytes, the difference here is that it's not an exe that I control completely but an MSI file developped with WIX.
Do you have any pointers on how to do that ?