microsoft / terminal

The new Windows Terminal and the original Windows console host, all in the same place!
MIT License
95.23k stars 8.27k forks source link

Can't install windows terminal on non-encrypted volume #4761

Closed maximborisov closed 4 years ago

maximborisov commented 4 years ago

Hello. I can't install windows terminal on Windows 10 Insiders preview Version 2004 (OS Build 19041.113).

I've tried:

DHowett-MSFT commented 4 years ago

So, that error message (0x8007177E) maps to ERROR_VOLUME_NOT_SUPPORT_EFS. It's saying that the volume you're installing Terminal to doesn't support file encryption. Weird! I think this is just something that the store is going to require for our package, as we haven't explicitly requested it or anything.

bunswoDS commented 4 years ago

I have the same issue.

App installation failed with error message: error 0x8007177E: Failure to get staging session for: Microsoft.WindowsTerminal_1.1.1671.0_8wekyb3d8bbwe.msixbundle. (0x8007177e)

Can't install on windows store, errors out, can't install from release page msi download version. Same problem with the preview version.

IanJespersen commented 4 years ago

I have resolved this by enabling systemwide NTFS encryption by changing the setting in the registry. Check if it is disabled (set to 1).

Get-ItemProperty HKLM:SYSTEM\CurrentControlSet\Control\FileSystem NtfsDisableEncryption

Set it to 0 if it has been disabled. I have no idea how this got set, it was not something I had done.

Set-ItemProperty HKLM:SYSTEM\CurrentControlSet\Control\FileSystem NtfsDisableEncryption -Value 1

This change required a reboot.

Once restart try installing again from the Store.

Hope this is of use.

bunswoDS commented 4 years ago

That fixed it! Thanks so much.