具體方法如下:
1、建立txt文檔,把下面的一小段代碼復制到記事本中保存;
$regkey = “HKCU:SOFTWAREMicrosoftWindowsCurrentVersionThemesPersonalize”
$name = “AppsUseLightTheme”
$exists = Get-ItemProperty -Path “$regkey” -Name “$name” -ErrorAction SilentlyContinue
If (($exists -ne $null) -and ($exists.Length -ne 0)) {
Remove-ItemProperty -Path $regkey -Name $name
}else{
New-ItemProperty -Path $regkey -Name $name -Value 0
}
2、將txt文檔後綴改為ps1;
3、右鍵單擊ps1文件,選擇“使用PowerShell運行”即可切換到黑色主題模式。再次運行可恢復。
需要說明的是,當開啟黑色主題模式後,激活狀態下的設置窗口標題欄也會顯示為黑色,會導致標題欄中的按鈕和字體無法看清楚。大概這功能還處在測試階段,並沒有開發完成,因此微軟沒有提供相應的開關。