管理任务栏对齐Windows 11 - Powershell



我想使用PowerShell将windows 11的任务栏对齐到左侧。

我这样做了:

New-ItemProperty "HKLM:SoftwareMicrosoftWindowsCurrentVersionExplorerAdvanced" -Name "TaskbarAl" -Value "0" -PropertyType Dword

我检查了一下,值已经改变了,但是任务栏没有移动。

您可能已经设置了HKLM,而不是HKCU

在终端/CMD提示符:

# Query current value
reg query hkcusoftwaremicrosoftwindowscurrentversionexploreradvanced /v TaskbarAl
# Set left align
reg add hkcusoftwaremicrosoftwindowscurrentversionexploreradvanced /v TaskbarAl /t REG_DWORD /f /d 0
# Set center align
reg add hkcusoftwaremicrosoftwindowscurrentversionexploreradvanced /v TaskbarAl /t REG_DWORD /f /d 1

不需要其他内容;修改后立即生效。

我不知道为什么,但是用Powershell我做不到。最后我用了"reg add"

相关内容

  • 没有找到相关文章

最新更新