-
I've used a lot of terminal programs in my lifetime. This one I found on the microsoft store and I just don't get it. There's nothing in my DOWNLOADS folder to install but I can oPEN it from within the MS store. It seems to open powershell. No instructions, no setup, not even typical selection of serial port, baud rate etc., and certainly no typical terminal settings. I saw a ling to "windows Terminal Support", and all it did was take me to Github. Glad I have an account here, but still nothing but a screen to write an issue? So I guess I'll poke around some, but my only complaint is that this is nothing like what is expected by an ordinary user when it comes to downloading a program, trying to use it, and finding any obvious "how to" documentation. Pretty sure a lot of people who have used a terminal program don't have a Github account. |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 3 replies
-
It is a Terminal emulator. A terminal emulation is a computer program that emulates the function of a computer terminal. It is used to allow text-based programs to be used within a graphical user interface. Inside Windows Terminal you can run e.g. text-based programs that connect to other hardware using RS232 and asking for settings like baudrate, partity, etc. I use Windows terminal to run following command: |
Beta Was this translation helpful? Give feedback.
-
That is because it is already installed. Windows Terminal has become the default terminal host in Windows 10 /11 for a while now, and it may be installed by windows update.
Yes, it opens a powershell inside the windows terminal. Windows Terminal is the default applikation in Windows to open Powershell or cmd and can host a bunch of other terminals like bash too. |
Beta Was this translation helpful? Give feedback.
-
To add: You can find the docs for the Terminal linked on the About dialog, which should take you to https://aka.ms/terminal-documentation |
Beta Was this translation helpful? Give feedback.
Windows Terminal
is not a software to create a serial connection using RS232 or similar hardware.It is a Terminal emulator. A terminal emulation is a computer program that emulates the function of a computer terminal. It is used to allow text-based programs to be used within a graphical user interface.
Inside Windows Terminal you can run e.g. text-based programs that connect to other hardware using RS232 and asking for settings like baudrate, partity, etc. I use Windows terminal to run following command:
plink -serial COM1 -sercfg 115200,8,1,N,N
to connect to my external hardware...