start .
is used to launch an explorer window from cmd.
When doing the same from wsl, I get
$ start . start: Unable to connect to system bus: Failed to connect to socket /var/run/dbus/system_bus_socket: No such file or directory
Is there an easy way to fix this?
On Creators Update you can call Windows executables from WSL if you add the extension file. You can open the present folder like this.
explorer.exe .
But it will only works if you are on a Windows folder (/mnt/*) otherwise it will open c:\windows\system32 folder by default.
If you still need start then you can create an alias
alias start='cmd.exe /c start'
then start .
will work too.