- Aug
- 2,799
- 144
When people post problems/questions in the Support Forum,
the first reply is usually...
...etc.
Here's the beginnings of tccinfo.btm
from which you can capture the output,
and paste into your message with your support question.
No doubt there are other things that can be added to the script,
but this is just for starters.
Running from PowerShell 5.1 in Windows Terminal;
Running from TCC in Windows Terminal;
Running from stand-alone TCC;
I don't know how to get the font name and size without using a plugin,
so if anyone has a solution to that,
please post your solution.
Post #3 in this thread solves the font name and size without using a plugin.
Joe
the first reply is usually...
Is this in a Take Command tab window,
a Windows Terminal tab window,
or a TCC stand-alone console window?
What code page?
Are you running as Admin?
Are you running elevated?
What Windows Version?
What version and build of TCC?
What font are you using?
...etc.
Here's the beginnings of tccinfo.btm
from which you can capture the output,
and paste into your message with your support question.
Code:
@SETLOCAL
@ECHO OFF
if isdir r:\temp set temp=r:\temp
echo _admin: %_admin
echo _elevated: %_elevated
echo _parent: %_parent
set WT=N
if defined WT_PROFILE_ID set WT=Y
if defined WT_SESSION set WT=Y
if %WT=Y echo Windows Terminal
ver
chcp
echo Font:
wmic os get caption, buildnumber, version, csdversion, OSArchitecture
echo %@regquery["HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\DisplayVersion"]
wmic computersystem get manufacturer,model
resolution
ENDLOCAL
No doubt there are other things that can be added to the script,
but this is just for starters.
Running from PowerShell 5.1 in Windows Terminal;
Running from TCC in Windows Terminal;
Running from stand-alone TCC;
so if anyone has a solution to that,
please post your solution.
Post #3 in this thread solves the font name and size without using a plugin.
Joe
Last edited: