Code: Select all
dir /a
...
08/28/2020 11:50 AM <JUNCTION> SendTo [C:\Users\user\AppData\Roaming\Microsoft\Windows\SendTo]
08/28/2020 11:50 AM <JUNCTION> Start Menu [C:\Users\user\AppData\Roaming\Microsoft\Windows\Start Menu]
08/28/2020 11:50 AM <JUNCTION> Templates [C:\Users\user\AppData\Roaming\Microsoft\Windows\Templates]
However if I create such junction myself e.g. via:
Code: Select all
mklink /J SendTo2 C:\Users\user\AppData\Roaming\Microsoft\Windows\SendTo
Junction created for SendTo2 <<===>> C:\Users\user\AppData\Roaming\Microsoft\Windows\SendTo
For some reason TC behaves differently when parsing my own junction vs one that comes with user account. It looks there is some magic flag that makes Windows user account built-in SendTo junction behave differently than my own junction. But what flag? Is it documented anywhere? How can I read or set such a flag from command line? Apparently TC makes distinction between these two junctions, that look exactly the same when doing dir /a. Can anyone explain this please?