Originally Posted by Darkbob
Thanks for all the info.
I'm not much of an Inno expert but seems to me there should be some kind of conditional logic available to help you with a Vista vs XP install.
There's the environment variable: %ALLUSERSPROFILE%
So if you could do something like this:
If %ALLUSERSPROFILE% = C:\Documents and Settings then
... Install wherever I like
else
... Install into the C:\Users\Public\MyApp folder
end if
But I can't figure it out... so does Inno have anything like this?
--DB