I was trying to mount boxryptor under WLS and found a thread with some info but it had some spam in it and no one would see the solution I found that works
https://forums.boxcryptor.com/topic/how-to-mount-boxcryptor-drive-under-windows-subsystem-for-linux-bash-on-windows#post-9710
---begin doesn't work:
C:\WINDOWS\system32>mklink /D c:\x x:\
symbolic link created for c:\x <<===>> x:\
Then in WSL:
wild@art-pc:~$ ls /mnt/c/x/ -a
---end doesn't work
This does, the filesystem plugin,
`
sudo mkdir /mnt/x
sudo mount -t drvfs x: /mnt/x
`
https://github.com/Microsoft/WSL/issues/2788