I have an MSI file in which a folder with a bunch of files inside it is installed. I have a location where I put the files:
Windows XP: C: \ Documents and Settings \ All Users \ Documents \ MyFolder
Windows 7: C: \ Users \ Public \ Documents \ MyFolder
The problem is that I donβt want to hard code these paths, but no matter where I look, I canβt figure out how to do it, because, everywhere, I look what they say about creating shortcuts for all users, and this is not what I'm trying to do. How to set the folder to the "All Users" folder?
Something like that:
<PropertyRef Id="WIX_DIR_COMMON_DOCUMENTS" /> <Directory Id="TARGETDIR" Name="SourceDir"> <Directory Id="WIX_DIR_COMMON_DOCUMENTS"> <Directory Id="MyFolder" Name="MyFolder">
Jimmy source share