다음 명령을 사용하여 기본 셸로 powershell을 설정 한 여러 Windows 2012 서버 코어 시스템이 있습니다.
$RegPath = "Microsoft.PowerShell.Core\Registry::HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\winlogon"
Set-ItemProperty -Confirm -Path $RegPath -Name Shell -Value 'cmd.exe /C start /max PowerShell.exe -noExit'
c : \ Windows \ System32 \ WindowsPowerShell \ v1.0 \ profile.ps1에서 특별한 powershell 스크립트를 사용하여 powershell 글꼴 색상을 사용자 지정할 수 있다는 것을 알았습니다. 이 스크립트는 모든 사용자가 사용합니다.
그러나 이제는 영구적 인 글꼴 얼굴 및 글꼴 크기 (모든 사용자에게도)를 사용자 정의하려고합니다. IE 서버에서 로그 아웃했다가 다시 로그인하면 설정이 유지되기를 원합니다. 마찬가지로 관리자로 로그인하거나 내 계정 powershell이 동일하게 표시되어야합니다. 동일한 글꼴 색상, 글꼴 및 글꼴 크기를 사용하십시오.
Powershell ISE를 사용하면 다음을 사용하여 글꼴 및 글꼴 크기를 설정할 수 있습니다.
$psISE.Options.FontName = 'Lucida Sans Console'
$psISE.Options.FontSize = 14
powershell 자체에 해당하는 것은 무엇입니까?