- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
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 PowerShell ISE font Size using command?
To change the font size of the PowerShell ISE editor using the command, we need to use the cmdlet $PSISE which is only loaded inside the PowerShell ISE console. You won’t find it in the main PowerShell console.
Once you run this command, there are various properties available. For example,
PS C:\> $psISE CurrentPowerShellTab : Microsoft.PowerShell.Host.ISE.PowerShellTab CurrentFile : Microsoft.PowerShell.Host.ISE.ISEFile CurrentVisibleHorizontalTool : CurrentVisibleVerticalTool : Options : Microsoft.PowerShell.Host.ISE.ISEOptions PowerShellTabs : {PowerShell 1}
You need to select the Options Property and then need to set its FontSize attribute as shown below.
$psISE.Options.FontSize = 12
The above command will immediately change the font size of the ISE console.
- Related Articles
- How to change the color of the PowerShell ISE editor using command?
- How to change the font size using CSS?
- How to change the font size of Text using FabricJS?
- How to change font size in HTML?
- How to change font size in ttk.Button?
- How to change the font size of a text using JavaScript?
- How to change the font size of a Textbox using FabricJS?
- How to change the Title of the console using PowerShell command?
- How to change the size of the Console using PowerShell?
- How to change the size of the Azure VM using PowerShell?
- How to change the Foreground color or Font color of the console using PowerShell?
- How to change the font size of textView in android?
- How to change xticks font size in a matplotlib plot?
- How to change Font Size Depending on Width of Container?
- How can I change the font family and font size with jQuery?

Advertisements