image frame

博客

知足常乐

45.添加右键切换电源计划

添加命令:

1
reg delete "HKEY_CLASSES_ROOT\DesktopBackground\shell\SwitchPowerPlan" /f & reg add "HKEY_CLASSES_ROOT\DesktopBackground\shell\SwitchPowerPlan" /v Icon /t REG_SZ /d powercpl.dll /f & reg add "HKEY_CLASSES_ROOT\DesktopBackground\shell\SwitchPowerPlan" /v MUIVerb /t REG_SZ /d 切换电源计划 /f & reg add "HKEY_CLASSES_ROOT\DesktopBackground\shell\SwitchPowerPlan" /v Position /t REG_SZ /d Bottom /f & reg add "HKEY_CLASSES_ROOT\DesktopBackground\shell\SwitchPowerPlan" /v SubCommands /t REG_SZ /d "" /f & reg add "HKEY_CLASSES_ROOT\DesktopBackground\shell\SwitchPowerPlan\Shell\01menu" /v Icon /t REG_SZ /d powercpl.dll /f & reg add "HKEY_CLASSES_ROOT\DesktopBackground\shell\SwitchPowerPlan\Shell\01menu" /v MUIVerb /t REG_SZ /d 节能 /f & reg add "HKEY_CLASSES_ROOT\DesktopBackground\shell\SwitchPowerPlan\Shell\01menu\Command" /ve /t REG_SZ /d "powercfg /setactive a1841308-3541-4fab-bc81-f71556f20b4a" /f & reg add "HKEY_CLASSES_ROOT\DesktopBackground\shell\SwitchPowerPlan\Shell\02menu" /v Icon /t REG_SZ /d powercpl.dll /f & reg add "HKEY_CLASSES_ROOT\DesktopBackground\shell\SwitchPowerPlan\Shell\02menu" /v MUIVerb /t REG_SZ /d 平衡 /f & reg add "HKEY_CLASSES_ROOT\DesktopBackground\shell\SwitchPowerPlan\Shell\02menu\Command" /ve /t REG_SZ /d "powercfg /setactive 381b4222-f694-41f0-9685-ff5bb260df2e" /f & reg add "HKEY_CLASSES_ROOT\DesktopBackground\shell\SwitchPowerPlan\Shell\03menu" /v Icon /t REG_SZ /d powercpl.dll /f & reg add "HKEY_CLASSES_ROOT\DesktopBackground\shell\SwitchPowerPlan\Shell\03menu" /v MUIVerb /t REG_SZ /d 高性能 /f & reg add "HKEY_CLASSES_ROOT\DesktopBackground\shell\SwitchPowerPlan\Shell\03menu\Command" /ve /t REG_SZ /d "powercfg /setactive 8c5e7fda-e8bf-4a96-9a85-a6e23a8c635c" /f & reg add "HKEY_CLASSES_ROOT\DesktopBackground\shell\SwitchPowerPlan\Shell\04menu" /v Icon /t REG_SZ /d powercpl.dll /f & reg add "HKEY_CLASSES_ROOT\DesktopBackground\shell\SwitchPowerPlan\Shell\04menu" /v MUIVerb /t REG_SZ /d 卓越性能 /f & reg add "HKEY_CLASSES_ROOT\DesktopBackground\shell\SwitchPowerPlan\Shell\04menu\Command" /ve /t REG_SZ /d "powercfg /setactive e9a42b02-d5df-448d-aa00-03f14749eb61" /f

删除命令:

1
reg delete "HKEY_CLASSES_ROOT\DesktopBackground\shell\SwitchPowerPlan" /f

44.更改网络为公用或专用

方法一:用PowerShell命令的方式修改(比较安全,仅限于当前连接的网络)

获取网络连接信息

1
Get-NetConnectionProfile

设置为专用

1
Set-NetConnectionProfile -Name 网络 -NetworkCategory Private

设置为公用

1
Set-NetConnectionProfile -Name 网络 -NetworkCategory Public

命令组合修改

1
$Name = Get-NetConnectionProfile;Set-NetConnectionProfile -Name $Name.Name -NetworkCategory Private

方法二:修改注册表(暂时等之后再总结)

43.用命令行的方式关闭开启Windows防火墙

开启防火墙

1
netsh advfirewall set allprofiles state on

关闭防火墙

1
netsh advfirewall set allprofiles state off

重置防火墙

1
netsh advfirewall reset

单个修改则仅需把allprofiles换成对应的即可

  • 域:domainprofile
  • 专用:privateprofile
  • 公用:publicprofile

42.部分Windows系统设置页面的打开命令

个性化

1
explorer.exe shell:::{ED834ED6-4B5A-4bfe-8F11-A626DCB6A921}

个性化 -> 桌面背景

1
explorer.exe shell:::{ED834ED6-4B5A-4bfe-8F11-A626DCB6A921} -Microsoft.Personalization\pageWallpaper

个性化 -> 颜色和外观

1
explorer.exe shell:::{ED834ED6-4B5A-4bfe-8F11-A626DCB6A921} -Microsoft.Personalization\pageColorization

通知区域图标

1
explorer.exe shell:::{05D7B0F4-2121-4EFF-BF6B-ED3F69B894D9}

声音窗口

1
rundll32.exe shell32.dll,Control_RunDLL mmsys.cpl

屏幕保护程序

1
rundll32.exe shell32.dll,Control_RunDLL desk.cpl,,1

桌面图标设置

1
rundll32.exe shell32.dll,Control_RunDLL desk.cpl,,0

鼠标属性

1
rundll32.exe shell32.dll,Control_RunDLL main.cpl,,0

环境变量

1
rundll32.exe sysdm.cpl,EditEnvironmentVariables

防火墙

1
rundll32.exe shell32.dll,Control_RunDLL firewall.cpl

高级安全防火墙

1
wf.msc

设备管理器

1
devmgmt.msc

计算机管理

1
compmgmt.msc

磁盘管理

1
diskmgmt.msc

组策略

1
gpedit.msc

事件查看器

1
eventvwr.msc

共享文件夹

1
fsmgmt.msc

本地用户和组

1
lusrmgr.msc

本地安全策略

1
secpol.msc

服务

1
services.msc
  • Copyrights © 2023-2024 kukusun