Archive: Change value for startup link


Change value for startup link
hi, is it possible to change the value for startup link created after installation completes ? It is a link to execute a .bat file, and i want to change the 'Start in' value for the same.


Use SetOutPath to set the "Start in" value:

SetOutPath $INSTDIR\startin
CreateShortcut $DESKTOP\blah.lnk $INSTDIR\blah.bat

working fine...........
cool, using SetOutPath is working fine. thanx !