A friend of mine wants to hand out CDs (yes, compact disks) as invitations for a party. When someone puts the CD into their computer, it should automatically load a webpage used for RSVPing to the party. How can I go about getting this done?
I know Windows has a default browser stored somewhere that I think can be used without worrying about cross platform issues, is this correct? What about Apple users?
You can do this in Windows very simply, but supporting Linux/OS X will be harder.
Windows
Autorun.inf
support does what you want - all you need is a URL to be opened and it will open in the user's default browser:On OS X you could use a
.webloc
file. The user would still need to open the CD and double-click on the file, but then the OS will handle opening the link inside the user's default browser.On Linux I don't know what you'd do, perhaps a shell script for the user to double-click that cleverly determined the environment and made an educated guess at the browser to open?