gpt4 book ai didi

powershell - 如何从命令行启动 PowerShell(不是脚本)

转载 作者:行者123 更新时间:2023-12-03 08:06:43 25 4
gpt4 key购买 nike

我是 PowerShell 的新手,正在努力解决我认为应该是一个简单的操作——我正在尝试从命令行启动一个 PowesShell 窗口。

如果我启动一个命令行实例并输入 powershellstart powershell ,我在命令行界面中获得了一个 PowerShell 实例,即典型的黑色背景和白色文本。我想要启动典型的 PowerShell 界面——蓝色背景和白色文本?我正在运行安装了 PowerShell 2.0 的 Windows XP。

最佳答案

设置默认的控制台颜色和字体:

http://poshcode.org/2220
来自 Windows PowerShell Cookbook (O'Reilly)
Lee Holmes (http://www.leeholmes.com/guide)

Set-StrictMode -Version Latest

Push-Location
Set-Location HKCU:\Console
New-Item '.\%SystemRoot%_system32_WindowsPowerShell_v1.0_powershell.exe'
Set-Location '.\%SystemRoot%_system32_WindowsPowerShell_v1.0_powershell.exe'

New-ItemProperty . ColorTable00 -type DWORD -value 0x00562401
New-ItemProperty . ColorTable07 -type DWORD -value 0x00f0edee
New-ItemProperty . FaceName -type STRING -value "Lucida Console"
New-ItemProperty . FontFamily -type DWORD -value 0x00000036
New-ItemProperty . FontSize -type DWORD -value 0x000c0000
New-ItemProperty . FontWeight -type DWORD -value 0x00000190
New-ItemProperty . HistoryNoDup -type DWORD -value 0x00000000
New-ItemProperty . QuickEdit -type DWORD -value 0x00000001
New-ItemProperty . ScreenBufferSize -type DWORD -value 0x0bb80078
New-ItemProperty . WindowSize -type DWORD -value 0x00320078
Pop-Location

关于powershell - 如何从命令行启动 PowerShell(不是脚本),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8670001/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com