I have an sideloaded UWP application where I want to do automatic updates via a UNC path.
My application is able to download the updates by itself into C:\Users\<username>\AppData\Roaming\somerandomfolder
However it seems, that the automatic update mechanism does not handle system variables:
- When entering
%appdata%\somerandomfolder
, it says: "Path has to begin with https:// or \\" - When entering
C:\%appdata%\somerandomfolder
(which leads to the same path as above when entered in Explorer), VisualStudio accepts the path, however instead of using the correct path, it creates a folder %appdata% at C:\
Is there a way to enter an update path for sideload updates without knowing the exact username?
Thanks in advance