- May
- 80
- 0
Obviously in Windows 10 CU (1703), the TCMD environment doesn't display 256 or 24bit colors that conhost on its own displays. I've tried it with TCC21, TCC20, CMD and PowerShell. In all cases, instead of displaying colors, black was displayed.
When running inside the Take Command Environment, the same apps display empty lines (black on black, I'd guess)
The "v2" in the title refers to Conhostv2.dll, the new Console Host that came with Windows 10 Creators Update (1703).
- TCC:
Code:
echo %@char[27][48;2;139;0;139mtest
- PowerShell:
Code:
Write-Host (([char]27)+"[48;2;139;0;139mtest")
- CMD: (^[ means [Ctrl]+[Left Bracket])
Code:
echo ^[[48;2;139;0;139mtest
When running inside the Take Command Environment, the same apps display empty lines (black on black, I'd guess)
The "v2" in the title refers to Conhostv2.dll, the new Console Host that came with Windows 10 Creators Update (1703).
Last edited: