Home > OS >  How to change script pane and result window in PowerShell Screen
How to change script pane and result window in PowerShell Screen

Time:05-03

I want the script pane to be left and the result screen to be on right. How to change it? I can see the options only like

  • Move script pane to top
  • Move Script pane to right
  • Show Script Pane Maximized

PowerShell screen

Update:

I have raised a feature request/enhancement request in GitHub, could all of the community members upvote this - https://github.com/PowerShell/PowerShell/issues/17240. Thank you for your support!

CodePudding user response:

PowerShell ISE only has 3 options. And there's no viable way to choose another. It's not the answer we want. It's the answer we have.

The options are

Show Script Pane Top - Moves the Script Pane to the top in the display.

Show Script Pane Right - Moves the Script Pane to the right in the display.

Show Script Pane Maximized - Maximizes the Script Pane.

https://docs.microsoft.com/en-us/powershell/scripting/windows-powershell/ise/exploring-the-windows-powershell-ise?view=powershell-7.2

  • Related