Forum Discussion
AndrewBlake
Aug 08, 2024Copper Contributor
How to Open wt.exe on a Clear Screen
I'm finding this to be quite a simple task, but I just can't seem to find the solution. Upon executing wt.exe with the parameter "-p "Windows PowerShell"" and wt.exe with the parameter "-p "Comma...
Caidenui
Aug 21, 2024Copper Contributor
If you're using PowerShell, you can create a script that runs wt.exe and clears the screen using the Clear-Host cmdlet:
wt.exe -p "Windows PowerShell"
Clear-Host
Save this script as a .ps1 file (e.g., clear_screen.ps1) and run it in PowerShell.