返回顶部
首页 > 问答 > 服务器 > Win10的系统设置和个性化设置有哪些?如何进行配置?
0
待解决

Win10的系统设置和个性化设置有哪些?如何进行配置?

  • 匿名发布
  • 2023-06-15
  • 发布在 问答/服务器
36

其他回答1

扫马路地人

2023-06-19

Win10的系统设置和个性化设置包括:

  1. 更改桌面背景、主题、颜色等外观设置。
    
    # 更改桌面背景
    Set-ItemProperty -Path "HKCU:Control PanelDesktop" -Name "Wallpaper" -Value "C:UsersPublicPicturesSample PicturesWinter.jpg"

更改主题

$themePath = "C:WindowsResourcesThemesWindows 10.theme" $regPath = "HKCU:SoftwareMicrosoftWindowsCurrentVersionThemesPersonalize" Set-ItemProperty -Path $regPath -Name "AppsUseLightTheme" -Value 0 Set-ItemProperty -Path $regPath -Name "SystemUsesLightTheme" -Value 0 Invoke-Item -Path $themePath

更改颜色

$color = "#FF5733" $regPath = "HKCU:Control PanelColors" Set-ItemProperty -Path $regPath -Name "ActiveBorder" -Value "$color" Set-ItemProperty -Path $regPath -Name "ActiveTitle" -Value "$color"


2. 更改语言、日期和时间、键盘和鼠标等区域设置。
```powershell
# 更改语言
$language = "en-US"
Set-WinSystemLocale $language
Set-WinUserLanguageList $language
Set-WinUILanguageOverride $language

# 更改日期和时间
$timezone = "Pacific Standard Time"
Set-TimeZone $timezone
Set-Date -Date "2021-01-01 12:00:00"

# 更改键盘和鼠标
$regPath = "HKCU:Control PanelKeyboard"
Set-ItemProperty -Path $regPath -Name "KeyboardDelay" -Value 0
Set-ItemProperty -Path $regPath -Name "KeyboardSpeed" -Value 31
$regPath = "HKCU:Control PanelMouse"
Set-ItemProperty -Path $regPath -Name "DoubleClickSpeed" -Value 1000
Set-ItemProperty -Path $regPath -Name "MouseHoverTime" -Value 1000
  1. 更改声音、通知、电源和睡眠等系统设置。
    
    # 更改声音
    $regPath = "HKCU:AppEventsSchemesApps.Default"
    Set-ItemProperty -Path $regPath -Name "Exclamation" -Value "C:WindowsMediaSpeech On.wav"
    Set-ItemProperty -Path $regPath -Name "CriticalBatteryAlarm" -Value "C:WindowsMediaAlarm01.wav"

更改通知

$regPath = "HKCU:SoftwareMicrosoftWindowsCurrentVersionExplorerAdvanced" Set-ItemProperty -Path $regPath -Name "EnableBalloonTips" -Value 0 Set-ItemProperty -Path $regPath -Name "ShowInfoTip" -Value 1

更改电源和睡眠

$regPath = "HKLM:SYSTEMCurrentControlSetControlPower" Set-ItemProperty -Path $regPath -Name "HibernateEnabled" -Value 0 Set-ItemProperty -Path $regPath -Name "HibernateFileSizePercent" -Value 0 Set-ItemProperty -Path $regPath -Name "SleepSetting" -Value 2



要进行配置,可以在开始菜单中搜索“设置”,打开“设置”应用程序,然后选择相应的选项进行更改。也可以使用PowerShell命令进行配置,如上述示例所示。
相关问题
2

回答

99+

浏览

2

回答

99+

浏览

2

回答

99+

浏览

2

回答

99+

浏览

2

回答

99+

浏览

2

回答

99+

浏览

2

回答

99+

浏览

2

回答

99+

浏览

相关文章
编程网,编程工程师的家园,是目前国内优秀的开源技术社区之一,形成了由开源软件库、代码分享、资讯、协作翻译、讨论区和博客等几大频道内容,为IT开发者提供了一个发现、使用、并交流开源技术的平台。
  • 官方手机版

  • 微信公众号

  • 商务合作