Aug 08 2024 02:07 AM
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 "Command Prompt"", I am faced with the following issue:
Is there a method to avoid displaying the "logos" or to include a cls command in the command line itself?
Ideally, I am looking for a solution that can be directly implemented via the command line, rather than relying on a configuration-based approach. However, I am open to exploring any available options.
Aug 21 2024 06:28 AM
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.
Aug 23 2024 03:23 AM
Aug 29 2024 01:37 AM