I want to automatically run it on windows startup,and I've done using
WriteRegStr HKEY_LOCAL_MACHINE "Software\Microsoft\Windows\CurrentVersion\Run"
application seems to run on startup and creates registry backups but in msconfig instead of application name I see exe run options:

main installer code:
RequestExecutionLevel admin
Section ""
SetAutoClose true
SetOverwrite on
detailprint "RegBak"
SetDetailsPrint none
CreateDirectory "$SMPROGRAMS\REGBAK"
SetOutPath $INSTDIR
FILE "regbak.exe"
FILE "regbak.chm"
FILE "RegOpt.ini"
SetOutPath "$INSTDIR"
WriteUninstaller "$INSTDIR\Uninstall.exe"
CreateShortCut "$SMPROGRAMS\REGBAK\Uninstall.lnk" "$INSTDIR\Uninstall.exe"
CreateShortCut "$SMPROGRAMS\REGBAK\RegBak.lnk" "$INSTDIR\regbak.exe"
WriteRegStr HKEY_LOCAL_MACHINE "Software\Microsoft\Windows\CurrentVersion\Run" \
"RegBak" '"$INSTDIR\regbak.exe" %USERPROFILE%\_RegBak\AUTOBACKUP\<DATE> /reg:suo /limitdays:20 /silent'
SectionEnd thanks for any help!
