Windows 10 Error 0x80070005 when typing `bash` with ssh console on Windows 10

someonesomewhere

New Member
Joined
Mar 19, 2018
Hi,
I installed openSSH for Windows and the Linux subsystem on my computer and I would like to access the Linux bash from another computer. When I use ssh to access the computer I get the Windows command prompt then when I type bash I get
Code:
Error: 0x80070005
Press any key to continue...
It seems that it is because ssh uses the legacy console (the one where Ctrl+C prints ^C and you can't select text) and Windows doesn't allow it. Is there any way to use the new console with ssh or to have the Linux bash starting with the system but in background so I can have a ssh service runing on the Linux bash.

Thanks for your help

PS: The Linux bash works when I access it from the computer itself
 
I would say it's likely that the bash shell can't be handed off to the ssh service. 8007 (7) is kind of a generic win32 facility for errors. and 0005 is access denied. You could try running procmon and filter for access denied and see if it's a matter of granting access to some resource.
 
Back
Top Bottom