I wondered more after seeing that NSIS shows it correct
$ACCESS includes the path of the access version the user has on his PC. I need this, because the user has to start the MDE with Access.
StrCpy $TRISTART "$ACCESS\MSACCESS.EXE $INSTDIR\Trisys.mde /runtime"
CreateShortCut "$DESKTOP\TRISYS.lnk" "$TRISTART"
My problem is that the shortcut should look like this:
"C:\Programme\Microsoft Office\ART\Office\MSACCESS.EXE" C:\Programme\TRISYS\Trisys.mde /runtime
But it looks like this:
"C:\Programme\Microsoft Office\ART\Office\MSACCESS.EXE C\Programme\UniSoft\TRISYS\Trisys.mde runtime"
the most interesting things are the missing ':' and the '/' - I know NSIS is based on C and I know too that C needs a double backslash to display a single backslash... but a normal slash?
I've searched the forums but I didn't found any really helping post
http://nsis.sourceforge.net/support...tx_faq_faq=11
didn't help too
hope anyone knows what to do