WSL 2

How to mount a Linux Virtual Hard Disk

wsl -d <Distribution> --mount --vhd <path>\ext4.vhdx

If you get the error:

  The process cannot access the file because it is being used by another process.

Then use Diskpart from a command prompt running as Administrator to detach it. Otherwise, reboot and try again.

diskpart
list vdisk
select vdisk file="<path>\ext4.vhdx"
detach vdisk
exit

Win-KeX | Kali Linux Documentation
Official documentation of Kali Linux, an Advanced Penetration Testing Linux distribution used for Penetration Testing, Ethical Hacking and network security assessments.
How to access mounted network drive on Windows Linux Subsystem?
I have a samba drive which is mounted on my local windows computer. I have a /mnt/c drive in WLS (Windows 10 Bash), but no /mnt/z. Is there a way to access it somehow? Can I remount it in WSL?