We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
"黑暗模式.vbs"
Dim objShell Set objShell = WScript.CreateObject("WScript.Shell") ' 「切换深色 Windows 模式」 objShell.Run "reg.exe add HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Themes\Personalize /v SystemUsesLightTheme /t REG_DWORD /d 0 /f", 0 ' 「切换深色应用模式」 objShell.Run "reg.exe add HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Themes\Personalize /v AppsUseLightTheme /t REG_DWORD /d 0 /f", 0 Set objShell = Nothing
"明亮模式.vbs"
Dim objShell Set objShell = WScript.CreateObject("WScript.Shell") ' 「切换浅色 Windows 模式」 objShell.Run "reg.exe add HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Themes\Personalize /v SystemUsesLightTheme /t REG_DWORD /d 1 /f", 0 ' 「切换浅色应用模式」 objShell.Run "reg.exe add HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Themes\Personalize /v AppsUseLightTheme /t REG_DWORD /d 1 /f", 0 Set objShell = Nothing
The text was updated successfully, but these errors were encountered:
最新的版本已失效
Sorry, something went wrong.
No branches or pull requests
"黑暗模式.vbs"
"明亮模式.vbs"
The text was updated successfully, but these errors were encountered: