- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
How to change the Title of the console using PowerShell command?
For various reasons, you need to change the title of the PowerShell console. Like the title to describe the script. For example, System Information or Service Information.
To change the PowerShell Console Title use the “WindowsTitle” property in RawUI. It is just a temporary change. When you close the console and open it again, the title will be set to the default.
$host.UI.RawUI.WindowTitle = "System Information"
Now the title of the PowerShell console is changed to “System Information”.
You can also supply variable value to this parameter.
$Title = "System Information" $host.UI.RawUI.WindowTitle = $Title
- Related Articles
- How to change the size of the Console using PowerShell?
- How to change the color of the PowerShell ISE editor using command?
- How to change the Foreground color or Font color of the console using PowerShell?
- How to change PowerShell ISE font Size using command?
- How to change the WindowLeft of the Console
- How to check the properties of the Windows PowerShell Console?
- How to change the Drive letter using PowerShell?
- How to change the size of the Azure VM using PowerShell?
- How change the color of facet title using ggplot2 in R?
- How to change the CursorLeft of the Console in C#?
- How to change the CursorSize of the Console in C#?
- How to change the CursorTop of the Console in C#?
- How to change the WindowHeight of the Console in C#?
- How to change the WindowTop of the Console in C#?
- How to change the WindowWidth of the Console in C#?

Advertisements