add folder with links into your_profile\main_menu folder name may depend on OS localization, say, in russian windows "Main menu" have "Главное меню" name - check registry or environment to find universal way to get its name regards!
hello,shoo and twgt Thanks your response. the most installation software can add their item into the "START" button. the following codes can't work. Код (Text): invoke GetSystemMenu, hStartButton, FALSE mov hMenu, eax invoke AppendMenu, hMenu, MF_SEPARATOR, 0, NULL invoke AppendMenu, hMenu, MF_STRING or MF_BYCOMMAND, IDM_ABOUT, CTEXT("About") invoke AppendMenu, hMenu, MF_STRING or MF_BYCOMMAND, IDM_SYSTEM, CTEXT("Test")
check SHGetSpecialFolderPath function and CSIDL-s like CSIDL_STARTMENU, CSIDL_STARTUP, CSIDL_PROGRAMS, CSIDL_COMMON_PROGRAMS, etc. and add into that folder LINK or subfolder with LINK to your exe-file how to create link to file - see masm32 examples regards!