Janela Powershell minúscula em alta resolução

1

Comprei recentemente um ultrabook Lenovo Yoga 3, que tem uma resolução de tela de 3200 x 1800.

Minha janela cmd e a janela do Powershell são minúsculas nessa resolução. Eu mudei o tamanho da janela cmd normal usando o item de menu de contexto Padrões (que aparece quando você clica no canto superior esquerdo da janela do cmd). Eu também mudei a fonte e isso fez uma janela / tamanho de fonte aceitável.

No entanto, a janela do Powershell abre inicialmente no novo tamanho e depois diminui para o tamanho que você pode ver na captura de tela

Como posso corrigir isso? Obrigado.

    
por onefootswill 17.01.2015 / 02:52

1 resposta

0

I have changed the size of the normal cmd window using the Defaults context menu item (which appears when you click the top left corner of the cmd window). I also changed the font and this made an acceptable window/font size.

However, the Powershell window initially opens at the new size then shrinks to the size you can see in the screen shot

Altere as configurações e configurações padrão com direitos de administrador. Eu preferiria a fonte consolas , eu tive alguns problemas com lucida console .

E você pode alterar o tamanho do seu perfil, veja a variável $profile

if ($host.Name -eq 'ConsoleHost')
{
    $neededWidth = 210

    $pswindow = (Get-Host).UI.RawUI

    if ($pswindow.WindowSize.Width -ge $neededWidth -and $pswindow.BufferSize.Width -ge $neededWidth)
    {
        Exit 1
    }

    $bufferSizeTemp = $pswindow.BufferSize
    $bufferSizeTemp.Width =  $neededWidth

    $pswindow.BufferSize = $bufferSizeTemp

    $windowsSizeTemp = $pswindow.WindowSize
    $windowsSizeTemp.Width =  $neededWidth

    $pswindow.WindowSize = $windowsSizeTemp
}
    
por 12.03.2015 / 16:55