如何通过脚本设置系统字体&区域与语言选项?
本帖最后由 baozhiwen 于 2013-7-26 23:11 编辑问题1
以前每台机器通过手动方式来修改右击桌面属性->外观->高级外观里面的对话框等显示的字体,改为微软雅黑。如下图中窗口:
现在想通过脚本来自动修改,可有谁做过这样的设置?这个是保存在注册表中的还是?
问题2
如何来通过脚本来自动修改区域与语言?如下图,在系统里哪里修改 啊。希望知道的人分享下哦~
木有人知道么~~~
;第一个
Opt("WinTitleMatchMode", 2)
Run("control.exe desk.cpl")
While True
Sleep(500)
If WinExists("显示") Then ExitLoop
WEnd
WinActivate("显示")
Sleep(500)
While True
ControlCommand("", "", "", "TabRight", "")
Sleep(500)
If 4 = ControlCommand("", "", "", "CurrentTab", "") Then ExitLoop
WEnd
ControlClick("显示", "", "")
Sleep(500)
While True
Sleep(500)
If WinExists("高级外观") Then ExitLoop
WEnd
ControlCommand("高级外观", "", "", "SelectString", "消息框")
Sleep(500)
ControlCommand("高级外观", "", "", "SelectString", "微软雅黑")
Sleep(500)
ControlClick("高级外观", "", "")
Sleep(500)
WinActivate("显示")
While True
Sleep(500)
If WinExists("显示") Then ExitLoop
WEnd
ControlClick("显示", "", "")
regsnap 监控修改后注册表变动,au3通过regwrite修改并刷新。 LS 正解
1楼模拟点击
2楼对比注册表 不错,期待能更加直接地进行调整的代码出现
页:
[1]