Windows Terminal Customization

This article mainly solved the problem of “open windows terminal here”.

Firstly u need to download windows terminal in Microsoft Store,then u need to edit settings of windows terminal, add a customized shell like conda.

Run this registry file.

Windows Registry Editor Version 5.00

[HKEY_CLASSES_ROOT\Directory\Background\shell\wt]
@="open terminal here"

[HKEY_CLASSES_ROOT\Directory\Background\shell\wt\command]
@="wt -d %V -p conda"

-d means choose path, %V means current path.

-p means specific named shell.