I need to create a Wix installer, where I need to create some items on the desktop. The one for all users (C:\Users\Public\Desktop on Windows 10) is restricted, so I'd like to create it on the current user's desktop (C:\Users\\Desktop).
However, all the examples of Wix installers interacting with the desktop use the DesktopFolder value (which is the all users one):
<Directory Id="TARGETDIR" Name="SourceDir">
<Directory Id="DesktopFolder" Name="Desktop">
... [my stuff for the desktop goes here]
</Directory>
</Directory>
… where DesktopFolder seems like a well-known identifier for a system special folder.
Wix documentation says nothing.
Is there a list where I could find the id for the desktop folder of the currently logged on user?