Posted by member 7 on 2003-07-15 01:57:49 link

WindowsDir "c:\WINNT"

Use $WinDir$
StartMenuDir "$WindowsDir$start menu"
LSDir "c:\Litestep"

LS has builtin vars for those, for example $LitestepDir$. They also end with a trailing backslash.
personaldir "$LSDir$personal"

This and your other uses of $LSDir$ won't ever work because they're expanded to
personaldir "c:\litesteppersonal"
include "c:\litesteppersonalpersonal.rc"

Instead, use
PersonalDir "$LitestepDir$personal"
include "$PersonalDir$personal.rc"

which is correctly expanded to something like
PersonalDir "C:\Litestep\personal"
include "C:\Litestep\personal\personal.rc"

etc. etc.