MultiUser.nsh sets the $INSTDIR according to the $MultiUser.InstallMode value to one of the following:
CurrentUser:
"$LOCALAPPDATA\${MULTIUSER_INSTALLMODE_INSTDIR}"
AllUsers:"$PROGRAMFILES\${MULTIUSER_INSTALLMODE_INSTDIR}"
I need a slightly different value for CurrentUser install mode, that is
"$LOCALAPPDATA\Programs\${MULTIUSER_INSTALLMODE_INSTDIR}"
How can I achieve this?