Reputation: 3358
I'm trying to set the output folder of the compiled installer to the desktop. This script can be runned by multiple people across multiple computers, that's why I need to use a dynamic script.
OutputDir= "{#Desktop}"
I'm able to use the prefix userdocs:
but not userdesktop:
.
//Works:
#define Path "userdocs:Visual Studio 2013\Projects\"
//Throws "Unknow filename prefix userdesktop:"
#define Desktop "userdesktop:";
{userdesktop} & {commondesktop} *
The path to the desktop folder.
{userdocs} & {commondocs}
The path to the My Documents folder.
I also tried commomdesktop:
with no success.
Upvotes: 0
Views: 840