Details
Description
Create an installer with the key in config.xml :
<StartMenuDir>Miam-Player\SubDir\SubSubDir</StartMenuDir>
And try to uninstall right after.
"Start Menu\Programs\Miam-Player\SubDir" stills exists when uninstall is complete. It's working find with single level entry.
Component.prototype.createOperations = function() { try { // call the base create operations function component.createOperations(); // Always clear registry after install (should be improved) if (installer.value("os") == "win") { component.addOperation("CreateShortcut", "@TargetDir@/MiamPlayer.exe", "@StartMenuDir@/MiamPlayer.lnk"); } } catch (e) { print(e); } }